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

8 lines
258 B
MySQL
Raw Normal View History

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;