blob: 2fbaeda765ca0b93b6413d6ecc08d9d72031ad96 [file] [log] [blame]
create table t1(int_col int, bigint_col bigint);
explain cbo
with cte1(a, b, c) as (select int_col x, bigint_col y from t1)
select a, b from cte1;