You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by vl...@apache.org on 2018/08/01 13:02:29 UTC

calcite git commit: fix typo in HepPlanner trace message (Dylan)

Repository: calcite
Updated Branches:
  refs/heads/master 0bb924989 -> c11376590


fix typo in HepPlanner trace message (Dylan)

closes #754


Project: http://git-wip-us.apache.org/repos/asf/calcite/repo
Commit: http://git-wip-us.apache.org/repos/asf/calcite/commit/c1137659
Tree: http://git-wip-us.apache.org/repos/asf/calcite/tree/c1137659
Diff: http://git-wip-us.apache.org/repos/asf/calcite/diff/c1137659

Branch: refs/heads/master
Commit: c11376590aa13a51c41883f74a86ce5cc03df2a4
Parents: 0bb9249
Author: Dylan <ch...@mail2.sysu.edu.cn>
Authored: Mon Jul 9 17:39:18 2018 +0800
Committer: Vladimir Sitnikov <si...@gmail.com>
Committed: Wed Aug 1 16:00:21 2018 +0300

----------------------------------------------------------------------
 core/src/main/java/org/apache/calcite/plan/hep/HepPlanner.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/calcite/blob/c1137659/core/src/main/java/org/apache/calcite/plan/hep/HepPlanner.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/calcite/plan/hep/HepPlanner.java b/core/src/main/java/org/apache/calcite/plan/hep/HepPlanner.java
index 3f7f73e..ded7672 100644
--- a/core/src/main/java/org/apache/calcite/plan/hep/HepPlanner.java
+++ b/core/src/main/java/org/apache/calcite/plan/hep/HepPlanner.java
@@ -232,7 +232,7 @@ public class HepPlanner extends AbstractRelOptPlanner {
 
   void executeInstruction(
       HepInstruction.MatchOrder instruction) {
-    LOGGER.trace("Setting match limit to {}", instruction.order);
+    LOGGER.trace("Setting match order to {}", instruction.order);
     currentProgram.matchOrder = instruction.order;
   }