mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Add test.
This commit is contained in:
parent
b556b7c76e
commit
b81d96b84e
8
tests/queries/0_stateless/01280_null_in.reference
Normal file
8
tests/queries/0_stateless/01280_null_in.reference
Normal file
@ -0,0 +1,8 @@
|
||||
0
|
||||
0
|
||||
1
|
||||
1
|
||||
0
|
||||
0
|
||||
1
|
||||
1
|
9
tests/queries/0_stateless/01280_null_in.sql
Normal file
9
tests/queries/0_stateless/01280_null_in.sql
Normal file
@ -0,0 +1,9 @@
|
||||
SELECT count(in(NULL, []));
|
||||
SELECT count(notIn(NULL, []));
|
||||
SELECT count(nullIn(NULL, []));
|
||||
SELECT count(notNullIn(NULL, []));
|
||||
|
||||
SELECT count(in(NULL, tuple(NULL)));
|
||||
SELECT count(notIn(NULL, tuple(NULL)));
|
||||
SELECT count(nullIn(NULL, tuple(NULL)));
|
||||
SELECT count(notNullIn(NULL, tuple(NULL)));
|
Loading…
Reference in New Issue
Block a user