ClickHouse/dbms/tests/queries/0_stateless/00800_low_cardinality_empty_array.sql

8 lines
228 B
MySQL
Raw Normal View History

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