Vladsz83 commented on a change in pull request #9606:
URL: https://github.com/apache/ignite/pull/9606#discussion_r757574598



##########
File path: 
modules/calcite/src/test/sql/subquery/scalar/test_correlated_aggregate_subquery.test_ignore
##########
@@ -312,25 +312,25 @@ query IT
 SELECT i, (SELECT MIN(i) FROM integers WHERE i=i1.i) >= ALL(SELECT i FROM 
integers WHERE i IS NOT NULL) FROM integers i1 ORDER BY i;

Review comment:
       Now it works. Why in the ignored tests?

##########
File path: 
modules/calcite/src/test/sql/subquery/scalar/test_correlated_aggregate_subquery.test_ignore
##########
@@ -312,25 +312,25 @@ query IT
 SELECT i, (SELECT MIN(i) FROM integers WHERE i=i1.i) >= ALL(SELECT i FROM 
integers WHERE i IS NOT NULL) FROM integers i1 ORDER BY i;
 ----
 NULL   NULL
-1      0
-2      0
-3      1
+1      false
+2      false
+3      true
 
 query IT
 SELECT i, (SELECT MIN(i) FROM integers WHERE i<>i1.i) > ANY(SELECT i FROM 
integers WHERE i IS NOT NULL) FROM integers i1 ORDER BY i;

Review comment:
       Now it works. Why in the ignored tests?

##########
File path: 
modules/calcite/src/test/sql/subquery/scalar/test_correlated_aggregate_subquery.test_ignore
##########
@@ -312,25 +312,25 @@ query IT
 SELECT i, (SELECT MIN(i) FROM integers WHERE i=i1.i) >= ALL(SELECT i FROM 
integers WHERE i IS NOT NULL) FROM integers i1 ORDER BY i;
 ----
 NULL   NULL
-1      0
-2      0
-3      1
+1      false
+2      false
+3      true
 
 query IT
 SELECT i, (SELECT MIN(i) FROM integers WHERE i<>i1.i) > ANY(SELECT i FROM 
integers WHERE i IS NOT NULL) FROM integers i1 ORDER BY i;
 ----
 NULL   NULL
-1      1
-2      0
-3      0
+1      true
+2      false
+3      false
 
 query IT
 SELECT i, NOT((SELECT MIN(i) FROM integers WHERE i<>i1.i) > ANY(SELECT i FROM 
integers WHERE i IS NOT NULL)) FROM integers i1 ORDER BY i;

Review comment:
       Now it works. Why in the ignored tests?




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