aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/union/union_distinct.sql
blob: 595d54c7284c17068db5f515284c7e6e27ec9d84 (plain) (blame)
1
2
3
4
5
6
7
SELECT 
    1 as x,
    2 as y
UNION DISTINCT
SELECT
    1 as x,
    2 as y;