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

14 lines
369 B
SQL

create database if not exists test;
drop table if exists test.t;
create table test.t (a Int32, b Int32) engine = MergeTree partition by (a,b) order by (a);
insert into test.t values (1, 1);
alter table test.t add column c Int32;
select b from test.t prewhere a < 1000;
select c from test.t where a < 1000;
select c from test.t prewhere a < 1000;
drop table test.t;