aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg/join_using7.sql
blob: 04bba587b087259561b02fca0b0156682a1d9237 (plain) (blame)
1
2
3
4
5
6
7
8
--!syntax_pg
select c.* from (
    (select 1 as fooo, 1 as x
    union all
    select 1 as fooo, 2 as y) c
    join
    (select 1 as fooo, 3 as xy) d
    using(fooo)) order by x