mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Added test.
This commit is contained in:
parent
a73f29ca2e
commit
b95f5196c0
@ -0,0 +1 @@
|
||||
100000000 0123456789
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user