aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/blocks/combine_all_some.sql
blob: 5969668a669d67b3bdb27f6b23be8a66e8785194 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
USE plato;

SELECT
    some(key),
    some(cast(key as int8)),
    some(cast(key as uint16)),
    some(cast(key as int32)),
    some(1u/0u),
    some(2),
    some(if(key=10u,key)),
    some(if(key=100u,key)),
    some(false),
    some(key=10u),
    some(key>=10u),
    some(key=20u),
    some(if(key=10u,true)),
    some(if(key=100u,true)),
    some(if(key>=10u,true)),
FROM Input