summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/select_yql/join_implicit_using_right.yql
blob: 2e3faca243d91bbbafe062af7c31f4616703f529 (plain) (blame)
1
2
3
4
5
PRAGMA YqlSelect = 'force';

SELECT * FROM (VALUES (1, 2)) AS x (a, cx)
RIGHT JOIN (VALUES (1, 3), (2, 4)) AS y (a, cy)
ON x.a == y.a;