mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
8 lines
276 B
SQL
8 lines
276 B
SQL
drop table if exists lc_00800_1;
|
|
create table lc_00800_1 (names Array(LowCardinality(String))) engine=MergeTree order by tuple();
|
|
insert into lc_00800_1 values ([]);
|
|
insert into lc_00800_1 select emptyArrayString();
|
|
select * from lc_00800_1;
|
|
drop table if exists lc_00800_1;
|
|
|