ClickHouse/tests/queries/0_stateless/00609_prewhere_and_default.sql

14 lines
754 B
MySQL
Raw Normal View History

2019-06-03 17:36:27 +00:00
drop table if exists `table_00609`;
create table `table_00609` (key UInt64, val UInt64) engine = MergeTree order by key settings index_granularity=8192;
insert into `table_00609` select number, number / 8192 from system.numbers limit 100000;
alter table `table_00609` add column def UInt64 default val + 1;
select * from `table_00609` prewhere val > 2 format Null;
2018-03-22 19:54:21 +00:00
2019-06-03 17:36:27 +00:00
drop table if exists `table_00609`;
create table `table_00609` (key UInt64, val UInt64) engine = MergeTree order by key settings index_granularity=8192;
insert into `table_00609` select number, number / 8192 from system.numbers limit 100000;
alter table `table_00609` add column def UInt64;
select * from `table_00609` prewhere val > 2 format Null;
2018-03-22 19:54:21 +00:00
2019-06-03 17:36:27 +00:00
drop table if exists `table_00609`;