ClickHouse/dbms/tests/queries/0_stateless/906_low_cardinality_cache.sql

6 lines
216 B
MySQL
Raw Normal View History

2019-02-12 14:43:52 +00:00
drop table if exists test.lc;
create table test.lc (b LowCardinality(String)) engine=MergeTree order by b;
insert into test.lc select '0123456789' from numbers(100000000);
select count(), b from test.lc group by b;