ClickHouse/tests/queries/0_stateless/01812_has_generic.sql
Alexey Milovidov a54985458d Add a test
2021-04-13 20:10:27 +03:00

4 lines
184 B
SQL

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