ClickHouse/tests/queries/0_stateless/01079_new_range_reader_segfault.sql
2023-04-19 15:40:06 +00:00

12 lines
359 B
SQL

drop table if exists t;
create table t (a Int) engine = MergeTree order by a;
-- some magic to satisfy conditions to run optimizations in MergeTreeRangeReader
insert into t select number < 20 ? 0 : 1 from numbers(50);
alter table t add column s String default 'foo';
select s from t prewhere a != 1 where rowNumberInBlock() % 2 = 0 limit 1;
drop table t;