zstan commented on code in PR #5145:
URL: https://github.com/apache/ignite-3/pull/5145#discussion_r1944245640
##########
modules/sql-engine/src/integrationTest/java/org/apache/ignite/internal/sql/engine/ItDynamicParameterTest.java:
##########
@@ -235,6 +236,23 @@ public void testWithDifferentParametersTypes() {
assertQuery("SELECT
UPPER(TYPEOF(?))").withParams(1d).returns("DOUBLE").check();
}
+ /** Check that insertion value is trimmed if leading is zeroes. */
+ @ParameterizedTest
+ @CsvSource({"BINARY", "VARBINARY"})
+ public void testInsertZeroContainedBinary(String type) {
+ sql(format("CREATE TABLE t(id INT PRIMARY KEY, val {}(5000))", type));
Review Comment:
done
--
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]