2021-01-06 10:53:14 +00:00
|
|
|
set allow_experimental_map_type = 1;
|
|
|
|
|
|
|
|
-- String type
|
|
|
|
drop table if exists table_map;
|
|
|
|
create table table_map (a Map(String, String), b String) engine = Memory;
|
|
|
|
insert into table_map values ({'name':'zhangsan', 'age':'10'}, 'name'), ({'name':'lisi', 'gender':'female'},'age');
|
|
|
|
select mapContains(a, 'name') from table_map;
|
|
|
|
select mapContains(a, 'gender') from table_map;
|
|
|
|
select mapContains(a, 'abc') from table_map;
|
|
|
|
select mapContains(a, b) from table_map;
|
|
|
|
select mapContains(a, 10) from table_map; -- { serverError 43 }
|
|
|
|
select mapKeys(a) from table_map;
|
|
|
|
drop table if exists table_map;
|
|
|
|
|
|
|
|
CREATE TABLE table_map (a Map(UInt8, Int), b UInt8, c UInt32) engine = MergeTree order by tuple();
|
|
|
|
insert into table_map select map(number, number), number, number from numbers(1000, 3);
|
|
|
|
select mapContains(a, b), mapContains(a, c), mapContains(a, 233) from table_map;
|
|
|
|
select mapContains(a, 'aaa') from table_map; -- { serverError 43 }
|
|
|
|
select mapContains(b, 'aaa') from table_map; -- { serverError 43 }
|
|
|
|
select mapKeys(a) from table_map;
|
2021-01-11 02:56:13 +00:00
|
|
|
select mapValues(a) from table_map;
|
2021-01-06 10:53:14 +00:00
|
|
|
drop table if exists table_map;
|
2021-01-23 14:48:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
-- Const column
|
2021-01-23 14:53:08 +00:00
|
|
|
select map( 'aa', 4, 'bb' , 5) as m, mapKeys(m), mapValues(m);
|
2021-06-08 12:27:51 +00:00
|
|
|
select map( 'aa', 4, 'bb' , 5) as m, mapContains(m, 'aa'), mapContains(m, 'k');
|
|
|
|
|
|
|
|
select map(0, 0) as m, mapContains(m, number % 2) from numbers(2);
|