zstan commented on code in PR #3797:
URL: https://github.com/apache/ignite-3/pull/3797#discussion_r1611430197


##########
modules/sql-engine/src/integrationTest/java/org/apache/ignite/internal/sql/engine/ItSqlOperatorsTest.java:
##########
@@ -337,6 +336,14 @@ public void testJson() {
         assertExpression("'1' IS NOT JSON SCALAR").returns(false).check();
     }
 
+    @Test
+    public void testNullIf() {
+        assertExpression("NULLIF(1, 2)").returns(1).check();
+        assertExpression("NULLIF(1, 1)").returns(null).check();
+        assertThrowsSqlException(SqlException.class, Sql.RUNTIME_ERR, 
"Character b is neither a decimal digit number, "

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: notifications-unsubscr...@ignite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to