aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/intersect/intersect_all_empty.sql
blob: c89a93a9243abcd148ba8bd4e2f91550d06f18b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
SELECT
    *
FROM
    as_table([])
INTERSECT ALL
SELECT
    *
FROM
    as_table([])
;

SELECT
    *
FROM
    as_table([])
INTERSECT ALL
SELECT
    1 AS x,
    2 AS y
;

SELECT
    1 AS x,
    2 AS y
INTERSECT ALL
SELECT
    *
FROM
    as_table([])
;