zstan commented on code in PR #13011:
URL: https://github.com/apache/ignite/pull/13011#discussion_r3137879272


##########
modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/planner/AbstractPlannerTest.java:
##########
@@ -619,6 +627,80 @@ protected <T extends RelNode> Predicate<RelNode> 
input(Predicate<T> predicate) {
         return input(0, predicate);
     }
 
+    /**
+     * Change localRef arrangement according lexographical ordering, i.e. <br>
+     * AND(=($t1, 0), =($t0, 0), SEARCH($t2, Sarg[IS NOT NULL])) <br>
+     * will become: <br>
+     * AND(=($t0, 0), =($t1, 0), SEARCH($t2, Sarg[IS NOT NULL]))
+     */
+    protected <T extends RelNode> Predicate<ProjectableFilterableTableScan> 
satisfyCondition(String condition) {

Review Comment:
   @alex-plekhanov thanks, let`s use your approach



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to