aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/union/union_column_extention.sql
blob: 592b6ba780af73d94bb5f16bc95dcde2fa6a77cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
SELECT
    1 as x
UNION
SELECT
    'a' as y
UNION
SELECT
    1 as x,
    'a' as y
UNION
SELECT
    1 as x
UNION
SELECT
    1 as x,
    'b' as y;