alex-plekhanov commented on code in PR #12042: URL: https://github.com/apache/ignite/pull/12042#discussion_r2063596346
########## modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/StdSqlOperatorsTest.java: ########## @@ -285,6 +285,8 @@ public void testCollections() { assertExpression("CARDINALITY(ARRAY[1, 2, 3])").returns(3).check(); assertExpression("ARRAY[1, 2, 3] IS EMPTY").returns(false).check(); assertExpression("ARRAY[1, 2, 3] IS NOT EMPTY").returns(true).check(); + assertQuery("SELECT * FROM UNNEST(ARRAY[1, 2]) WITH ORDINALITY").returns(1, 1).returns(2, 2) Review Comment: There are a lot of tests for unnest with/without ordinality in UnnestIntegrationTest. StdSqlOperatorsTest is a smoke test for operators. It contains one test per each operator to not overload class. -- 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