mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
6 lines
443 B
SQL
6 lines
443 B
SQL
drop table if exists lc_prewhere;
|
|
create table lc_prewhere (key UInt64, val UInt64, str StringWithDictionary, s String) engine = MergeTree order by key settings index_granularity = 8192;
|
|
insert into lc_prewhere select number, if(number < 10 or number > 8192 * 9, 1, 0), toString(number) as s, s from system.numbers limit 100000;
|
|
select sum(toUInt64(str)), sum(toUInt64(s)) from lc_prewhere prewhere val == 1;
|
|
drop table if exists lc_prewhere;
|