Vladsz83 commented on code in PR #12037:
URL: https://github.com/apache/ignite/pull/12037#discussion_r2126297684


##########
modules/calcite/src/test/sql/join/inner/join_cross_product.test:
##########
@@ -35,5 +35,8 @@ select * from t1 join t2 on (i=j), t3 join t4 on (k=l) order 
by 1, 2, 3, 4;
 1      1       2       2
 1      1       3       3
 
-statement error
+query IIII
 select * from t1 join t2 on (i=j), t3 join t4 on (i+k=j+l)

Review Comment:
   > Locally this test throws an error. Why it was uncommented?
   
   Hm, works for me:
   
   Execute: insert into t2 values (1);
   Execute: insert into t3 values (2), (3);
   Execute: insert into t4 values (2), (3);
   Execute: select * from t1 join t2 on (i=j), t3 join t4 on (k=l) order by 1, 
2, 3, 4;
   Execute: select * from t1 join t2 on (i=j), t3 join t4 on (i+k=j+l)
   Finish: inner/join_cross_product.test



-- 
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: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to