ClickHouse/dbms/tests/queries/0_stateless/00712_prewhere_with_sampling_and_alias.sql

7 lines
362 B
MySQL
Raw Normal View History

drop table if exists t;
create table t (date Date, counter UInt64, sampler UInt64, alias_col alias date + 1) engine = MergeTree(date, intHash32(sampler), (counter, date, intHash32(sampler)), 8192);
insert into t values ('2018-01-01', 1, 1);
select alias_col from t sample 1 / 2 where date = '2018-01-01' and counter = 1 and sampler = 1;
drop table if exists t;
2018-11-06 16:37:03 +00:00