aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/pg/equals_where_over_cross2.sql
blob: f46adbefb11ca9fb88c99489dae69060bd3b3e24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
--!syntax_pg
select * from (select 1 as x, 2 as w) as a
, (select 1 as y, 2 as v) as b
, (select 1 as z) as c
where
a.x = c.z
and
a.x = b.y
and
a.w = b.v