aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/union/union_positional.sql
blob: 3f3a15c1a2e3050bc423d67231f7d2cac920b652 (plain) (blame)
1
2
3
4
5
6
7
8
9
PRAGMA PositionalUnionAll;

SELECT 
    1 as y,
    2 as x
UNION
SELECT
    1 as x,
    2 as y;