Add a test

This commit is contained in:
Alexey Milovidov 2021-04-13 20:10:27 +03:00
parent c01756014e
commit a54985458d
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,3 @@
1
1
1

View File

@ -0,0 +1,3 @@
SELECT has([(1, 2), (3, 4)], (toUInt16(3), 4));
SELECT hasAny([(1, 2), (3, 4)], [(toUInt16(3), 4)]);
SELECT hasAll([(1, 2), (3, 4)], [(toNullable(1), toUInt64(2)), (toUInt16(3), 4)]);