zstan commented on code in PR #1042: URL: https://github.com/apache/ignite-3/pull/1042#discussion_r962811841
########## modules/runner/src/integrationTest/sql/subquery/exists/test_correlated_exists.test_ignore: ########## @@ -13,9 +13,29 @@ PRAGMA enable_verification statement ok CREATE TABLE integers(i INTEGER) +statement ok +CREATE TABLE t1(a INTEGER, b INTEGER, c INTEGER, d INTEGER, e INTEGER, f INTEGER) + +statement ok +INSERT INTO t1 VALUES (1, 2, 6, 4, 5, 6), (2, 3, 6, 5, 6, 7) + statement ok INSERT INTO integers VALUES (1), (2), (3), (NULL) +query IIIIII Review Comment: in test1 returned resultset not checked, here i fill appropriate data and check result too. -- 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]
