mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
22 lines
745 B
SQL
22 lines
745 B
SQL
drop table if exists t;
|
|
|
|
create table t (x UInt8, id UInt8) ENGINE = MergeTree() order by (id);
|
|
insert into t values (1, 1);
|
|
|
|
set enable_optimize_predicate_expression = 0;
|
|
|
|
select 1 from t as l join t as r on l.id = r.id prewhere l.x;
|
|
select 2 from t as l join t as r on l.id = r.id where r.x;
|
|
select 3 from t as l join t as r on l.id = r.id prewhere l.x where r.x;
|
|
select 4 from t as l join t as r using id prewhere l.x where r.x;
|
|
|
|
select 5 from t as l join t as r on l.id = r.id where l.x and r.x;
|
|
select 6 from t as l join t as r using id where l.x and r.x;
|
|
|
|
set optimize_move_to_prewhere = 0;
|
|
|
|
select 7 from t as l join t as r on l.id = r.id where l.x and r.x;
|
|
select 8 from t as l join t as r using id where l.x and r.x;
|
|
|
|
drop table t;
|