ClickHouse/dbms/tests/queries/0_stateless/00932_array_intersect_bug.sql
Nikolai Kochetov 821f80e44c Moved tests.
2019-04-01 16:46:18 +03:00

6 lines
181 B
SQL

SELECT arrayIntersect(['a', 'b', 'c'], ['a', 'a']);
SELECT arrayIntersect([1, 1], [2, 2]);
SELECT arrayIntersect([1, 1], [1, 2]);
SELECT arrayIntersect([1, 1, 1], [3], [2, 2, 2]);