blob: c5965c93bd08481adcb3553297fc31f40bd50909 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
$data = [<|optionalValue: Just(4)|>,
<|optionalValue: Nothing(int32?)|>,
<|optionalValue: Just(404)|>,
<|optionalValue: Nothing(int32?)|>,];
$f = ($x) -> {
return Just($x * 2);
};
SELECT YQL::IfPresent(optionalValue, $f, Null) FROM as_table($data);
|