nizhikov commented on code in PR #13019:
URL: https://github.com/apache/ignite/pull/13019#discussion_r3077467116
##########
modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/DistributedJoinIntegrationTest.java:
##########
@@ -130,6 +131,16 @@ public void testJoinWithBroadcastAggregate() {
.check();
}
+ /** */
+ @Test
+ public void testAsofJoinUnsupported() {
+ assertThrows("SELECT *\n" +
+ " FROM (VALUES (NULL, 0), (1, NULL), (1, 0), (1, 1), (1, 2), (1,
3), (1, 4), (2, 3), (3, 4)) AS t1(k, t)\n" +
+ " ASOF JOIN (VALUES (1, NULL), (1, 2), (1, 3), (2, 10), (2, 0)) AS
t2(k, t)\n" +
Review Comment:
Test added. ~Actually, LEFT_ASOF not supported on grammar level, if I
understand correctly.~
Written LEFT ASOF wrong, firstly.
Not, it seems all tests are good.
--
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]