Add test.

This commit is contained in:
Nikolai Kochetov 2020-05-14 17:27:05 +03:00
parent b556b7c76e
commit b81d96b84e
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,8 @@
0
0
1
1
0
0
1
1

View 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)));