blob: 509447a75c28e99746994e9a195d8c39fe142e07 [file] [log] [blame]
create table t1(int_col int, bigint_col bigint);
explain cbo
with cte1(a) as (select int_col, bigint_col a from t1)
select a from cte1;