aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/expr/empty_dict_ops.sql
blob: c6787ec8252c461d7d3281b08e8d7bf5b1f06f3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* syntax version 1 */
/* postgres can not */
select
    DictLength({}),
    DictHasItems({}),
    DictContains({},1),
    DictLookup({},2),
    DictKeys({}),
    DictPayloads({}),
    DictItems({}),
    3 in {},
    DictLength(Just({})),
    DictHasItems(Just({})),
    DictContains(Just({}),1),
    DictLookup(Just({}),2),
    DictKeys(Just({})),
    DictPayloads(Just({})),
    DictItems(Just({})),
    3 in Just({});