aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/expr/convert_to_lambda_optional_args.sql
blob: 729486ea2dca94e0fc49808de95e452e8144b091 (plain) (blame)
1
2
3
4
5
6
7
/* syntax version 1 */
/* postgres can not */
$f = ($x,$y?)->($x + ($y ?? 0));
select ListMap([1,2,3],$f);

$g = ($x,$y,$z?)->(($x + $y + $z) ?? 100);
select Yql::Fold([1,2,3],0,$g);