ClickHouse/dbms/tests/queries/0_stateless/00800_low_cardinality_empty_array.sql
2019-01-09 15:16:03 +03:00

8 lines
258 B
SQL

drop table if exists test.lc;
create table test.lc (names Array(LowCardinality(String))) engine=MergeTree order by tuple();
insert into test.lc values ([]);
insert into test.lc select emptyArrayString();
select * from test.lc;
drop table if exists test.lc;