Added test.

This commit is contained in:
Nikolai Kochetov 2019-02-12 17:43:52 +03:00
parent a73f29ca2e
commit b95f5196c0
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1 @@
100000000 0123456789

View File

@ -0,0 +1,5 @@
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;