ClickHouse/dbms/tests/queries/0_stateless/00650_array_enumerate_uniq_with_tuples.sql
Nikolai Kochetov f5ecd410ae Renamed test.
2018-06-29 17:05:02 +03:00

21 lines
1.2 KiB
SQL

drop table if exists test.tab;
create table test.tab (val UInt32, n Nested(x UInt8, y String)) engine = Memory;
insert into test.tab values (1, [1, 2, 1, 1, 2, 1], ['a', 'a', 'b', 'a', 'b', 'b']);
select arrayEnumerateUniq(n.x) from test.tab;
select arrayEnumerateUniq(n.y) from test.tab;
select arrayEnumerateUniq(n.x, n.y) from test.tab;
select arrayEnumerateUniq(arrayMap((a, b) -> (a, b), n.x, n.y)) from test.tab;
select arrayEnumerateUniq(arrayMap((a, b) -> (a, b), n.x, n.y), n.x) from test.tab;
select arrayEnumerateUniq(arrayMap((a, b) -> (a, b), n.x, n.y), arrayMap((a, b) -> (b, a), n.x, n.y)) from test.tab;
drop table test.tab;
create table test.tab (val UInt32, n Nested(x Nullable(UInt8), y String)) engine = Memory;
insert into test.tab values (1, [1, Null, 2, 1, 1, 2, 1, Null, Null], ['a', 'a', 'a', 'b', 'a', 'b', 'b', 'b', 'a']);
select arrayEnumerateUniq(n.x) from test.tab;
select arrayEnumerateUniq(n.y) from test.tab;
select arrayEnumerateUniq(n.x, n.y) from test.tab;
select arrayEnumerateUniq(arrayMap((a, b) -> (a, b), n.x, n.y)) from test.tab;
select arrayEnumerateUniq(arrayMap((a, b) -> (a, b), n.x, n.y), n.x) from test.tab;
select arrayEnumerateUniq(arrayMap((a, b) -> (a, b), n.x, n.y), arrayMap((a, b) -> (b, a), n.x, n.y)) from test.tab;