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
29 lines
1.2 KiB
SQL
29 lines
1.2 KiB
SQL
select 'NativeBlockInputStream';
|
|
select toTypeName(dict), dict, lowCardinalityIndices(dict), lowCardinalityKeys(dict) from (select '123_' || toLowCardinality(v) as dict from (select arrayJoin(['a', 'bb', '', 'a', 'ccc', 'a', 'bb', '', 'dddd']) as v));
|
|
select '-';
|
|
select toTypeName(dict), dict, lowCardinalityIndices(dict), lowCardinalityKeys(dict) from (select '123_' || toLowCardinality(v) as dict from (select arrayJoin(['a', Null, 'bb', '', 'a', Null, 'ccc', 'a', 'bb', '', 'dddd']) as v));
|
|
|
|
select 'MergeTree';
|
|
|
|
drop table if exists lc_small_dict;
|
|
drop table if exists lc_big_dict;
|
|
|
|
create table lc_small_dict (str StringWithDictionary) engine = MergeTree order by str;
|
|
create table lc_big_dict (str StringWithDictionary) engine = MergeTree order by str;
|
|
|
|
insert into lc_small_dict select toString(number % 1000) from system.numbers limit 1000000;
|
|
insert into lc_big_dict select toString(number) from system.numbers limit 1000000;
|
|
|
|
detach table lc_small_dict;
|
|
detach table lc_big_dict;
|
|
|
|
attach table lc_small_dict;
|
|
attach table lc_big_dict;
|
|
|
|
select sum(toUInt64OrZero(str)) from lc_small_dict;
|
|
select sum(toUInt64OrZero(str)) from lc_big_dict;
|
|
|
|
drop table if exists lc_small_dict;
|
|
drop table if exists lc_big_dict;
|
|
|