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


##########
modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/CorrelatesIntegrationTest.java:
##########
@@ -97,11 +103,37 @@ public void testCorrelatesCollision() {
             .returns(12, 2)
             .check();
 
-        // Collision by correlate variables in both, left and right hands.
-        assertQuery("SELECT * FROM test1 WHERE " +
-            "EXISTS(SELECT * FROM test2 WHERE (SELECT test1.a)=test2.a AND 
(SELECT test1.b)<>test2.c) " +
-            "AND NOT EXISTS(SELECT * FROM test2 WHERE (SELECT test1.a)=test2.a 
AND (SELECT test1.b)<test2.c)")
-            .returns(12, 2)
+        for (HintDefinition noHint : List.of(MERGE_JOIN, HASH_JOIN, NL_JOIN)) {
+            log.info(">>> Check with: " + noHint);
+            // Collision by correlate variables in both, left and right hands.

Review Comment:
   remove it at all



-- 
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