aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/schema/fake_column.sql
blob: 21c745b27e26490fcf01bb271760a1cb7242afe7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/* postgres can not */
USE plato;

insert into @tmp
select * from (
    select <||> as a
) flatten columns;

commit;

select 1 as a from @tmp;