summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/in/in_ansi.yql
blob: 09c3dd18b0ae100b9c1a3bbc969347dc91570ede (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
PRAGMA AnsiInForEmptyOrNullableItemsCollections;

SELECT
    1         IN (2, 3, null),          -- Nothing<Bool?>
    null      IN (),                    -- false?
    null      IN (null),                -- Nothing<Bool?>
    null      IN (1),                   -- Nothing<Bool?>
    (1, null) IN ((1, 1), (2, 2)),      -- Nothing<Bool?>
    (1, null) IN ((2, 2), (3, 3)),      -- false?
    (1, 2)    IN ((1, null), (2, 2)),   -- Nothing<Bool?>
    (1, 2)    IN ((null, 1), (2, 1)),   -- false?
    (1, 2)    IN ((1, null), (2, 1)),   -- Nothing<Bool?>
    128       IN (128ut, 1t),           -- true
;

SELECT
    Just(1)   IN (1, 2, 3),             -- true?
    1         IN (Just(2), Just(3)),    -- false?
;