aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg/select_unionall_scalar.sql
blob: a7f95a1e48aa29cf1abb62627a289407c1930748 (plain) (blame)
1
2
3
4
5
6
--!syntax_pg
select * from (select 1 as x, 3 as y) u
union all
select * from (select null::int4 as y, 2 as x) v
union all
select * from (select 4 as y, null::int4 as x) v