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
329 B
SQL
8 lines
329 B
SQL
set allow_suspicious_low_cardinality_types = 1;
|
|
drop table if exists lc_00800_2;
|
|
create table lc_00800_2 (val LowCardinality(UInt64)) engine = MergeTree order by val;
|
|
insert into lc_00800_2 select number % 123 from system.numbers limit 100000;
|
|
select distinct(val) from lc_00800_2 order by val;
|
|
drop table if exists lc_00800_2
|
|
;
|