zstan commented on code in PR #13375:
URL: https://github.com/apache/ignite/pull/13375#discussion_r3735239909
##########
modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/LimitOffsetIntegrationTest.java:
##########
@@ -121,10 +122,31 @@ public void testInvalidLimitOffset() {
assertThrows("SELECT * FROM TEST_REPL OFFSET -1 ROWS",
IgniteSQLException.class, null);
+ assertThrows("SELECT * FROM TEST_REPL OFFSET -1.5 ROWS",
Review Comment:
plz fix all such a cases for:
```suggestion
assertThrowsSqlException("SELECT * FROM TEST_REPL OFFSET -1.5 ROWS",
"Incorrect syntax near the keyword 'OFFSET'");
```
--
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]