Let's check without projection just in case

This commit is contained in:
Amos Bird 2021-10-21 10:16:11 +08:00
parent 2f615e9176
commit e679e952c8
No known key found for this signature in database
GPG Key ID: 80D430DCBECFEDB4

View File

@ -2,5 +2,7 @@ drop table if exists t;
create table t (s UInt16, l UInt16, projection p (select s, l order by l)) engine MergeTree order by s;
set allow_experimental_projection_optimization=1;
select s from t join (select toUInt16(1) as s) x using (s);
select s from t join (select toUInt16(1) as s) x using (s) settings allow_experimental_projection_optimization = 1;
select s from t join (select toUInt16(1) as s) x using (s) settings allow_experimental_projection_optimization = 0;
drop table t;