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

14 lines
259 B
MySQL
Raw Normal View History

2018-10-04 18:18:04 +00:00
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;