aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/blocks/ifpresent_single_arg.sql
blob: 155671067d57a8bf6eb9d75591e20be962d5741d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
$data = [<|optionalValue: Just(4), missingValue: -1|>,
         <|optionalValue: Nothing(int32?), missingValue: -2|>,
         <|optionalValue: Just(404), missingValue: -3|>,
         <|optionalValue: Nothing(int32?), missingValue: -4|>,];


$f = ($x) -> {
    return $x * 2;
};

SELECT YQL::IfPresent(optionalValue, $f, missingValue) FROM as_table($data);