ygerzhedovich commented on code in PR #4028:
URL: https://github.com/apache/ignite-3/pull/4028#discussion_r1664054177


##########
modules/sql-engine/src/integrationTest/sql/update/test_null_update.test:
##########
@@ -0,0 +1,29 @@
+# name: test/sql/update/test_null_update.test
+# description: Test standard update behavior with NULLs
+# group: [update]
+
+# create a table
+statement ok
+CREATE TABLE test (a INTEGER);
+
+statement ok
+INSERT INTO test VALUES (1), (2), (3), (NULL)
+
+query I
+SELECT * FROM test ORDER BY a
+----
+1
+2
+3
+NULL
+
+statement ok
+UPDATE test SET a=NULL WHERE a=2

Review Comment:
   should we check also ``UPDATE test SET=4 WHERE a IS NULL`` ?



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