ClickHouse/dbms/tests/queries/0_stateless/00712_prewhere_with_final.sql
Nikolai Kochetov 2f2c939446 Added tests.
2018-10-04 21:19:25 +03:00

14 lines
259 B
SQL

drop table if exists test.trepl;
create table test.trepl
(
d Date,
a Int32,
b Int32
) engine = ReplacingMergeTree(d, (a,b), 8192);
insert into test.trepl values ('2018-09-19', 1, 1);
select b from test.trepl FINAL prewhere a < 1000;
drop table test.trepl;