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