summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/blocks/coalesce.yql
blob: 49be4b1406549dd36ead334cef83ac5076e3b2f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$data1 = [
    <|x:nothing(int32?),y:10|>,
    <|x:just(1),y:10|>,
];

$data2 = [
    <|x:nothing(int32?),y:just(10)|>,
    <|x:just(1),y:just(10)|>,
    <|x:just(1),y:nothing(int32?)|>,
];

select x ?? y from as_table($data1);

select x ?? y from as_table($data2);