ClickHouse/tests/queries/0_stateless/00712_prewhere_with_alias_bug.sql
Ivan 97f2a2213e
Move all folders inside /dbms one level up (#9974)
* Move some code outside dbms/src folder
* Fix paths
2020-04-02 02:51:21 +03:00

6 lines
300 B
SQL

drop table if exists prewhere_alias;
create table prewhere_alias (a Int32, b Int32, c alias a + b) engine = MergeTree order by b;
insert into prewhere_alias values(1, 1);
select a, c + toInt32(1), (c + toInt32(1)) * 2 from prewhere_alias prewhere (c + toInt32(1)) * 2 = 6;
drop table prewhere_alias;