kgyrtkirk commented on a change in pull request #1072: [CALCITE-2879] Improve 
filter condition in Join
URL: https://github.com/apache/calcite/pull/1072#discussion_r261610022
 
 

 ##########
 File path: core/src/test/java/org/apache/calcite/test/RelOptRulesTest.java
 ##########
 @@ -1445,8 +1445,8 @@ public void testMinusMergeRule() throws Exception {
   @Test public void testMergeJoinFilter() throws Exception {
     HepProgram program = new HepProgramBuilder()
         .addRuleInstance(FilterProjectTransposeRule.INSTANCE)
-        .addRuleInstance(FilterMergeRule.INSTANCE)
         .addRuleInstance(FilterJoinRule.FILTER_ON_JOIN)
+        .addRuleInstance(FilterMergeRule.INSTANCE)
 
 Review comment:
   Right now the same pushdown of predicates is possible by using:
   ```
           .addRuleInstance(JoinPushTransitivePredicatesRule.INSTANCE)
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to