This is an automated email from the ASF dual-hosted git repository.
amashenkov pushed a commit to branch ignite-21914
in repository https://gitbox.apache.org/repos/asf/ignite-3.git
The following commit(s) were added to refs/heads/ignite-21914 by this push:
new d925de220c minor
d925de220c is described below
commit d925de220c600fd56050fd1ae7034b383282fcc7
Author: amashenkov <[email protected]>
AuthorDate: Mon Apr 8 15:08:01 2024 +0300
minor
---
.../integrationTest/sql/filter/test_in_list_of_single_element.test | 5 +++++
1 file changed, 5 insertions(+)
diff --git
a/modules/sql-engine/src/integrationTest/sql/filter/test_in_list_of_single_element.test
b/modules/sql-engine/src/integrationTest/sql/filter/test_in_list_of_single_element.test
index 6c4bc2177e..69d1685b17 100644
---
a/modules/sql-engine/src/integrationTest/sql/filter/test_in_list_of_single_element.test
+++
b/modules/sql-engine/src/integrationTest/sql/filter/test_in_list_of_single_element.test
@@ -10,6 +10,11 @@ CREATE TABLE integers(i INTEGER)
statement ok
INSERT INTO integers VALUES (1), (NULL);
+query III
+SELECT 1 IN (1), 1 IN (NULL), NULL IN (NULL)
+----
+TRUE, FALSE, FALSE
+
query I rowsort
SELECT * FROM integers WHERE 1 IN (1)
----