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

14 lines
369 B
MySQL
Raw Normal View History

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