zstan commented on code in PR #13311:
URL: https://github.com/apache/ignite/pull/13311#discussion_r3714498770


##########
modules/calcite/src/test/java/org/apache/ignite/internal/processors/query/calcite/integration/DynamicParametersIntegrationTest.java:
##########
@@ -150,6 +150,9 @@ public void testDynamicParameters() {
         assertQuery("SELECT name LIKE '%' || ? || '%' FROM person where name 
is not null").withParams("go")
             
.returns(true).returns(false).returns(false).returns(false).check();
 
+        assertQuery("SELECT id FROM person ORDER BY id LIMIT 
?").withParams(1).returns(0).check();
+        assertQuery("SELECT id FROM person ORDER BY id LIMIT 
?").withParams(new BigDecimal(1)).returns(0).check();

Review Comment:
   done, plz check



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