aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/lambda/lambda_opt_args.sql
blob: 0256eeb1406835389210780f6614b18290e62226 (plain) (blame)
1
2
3
4
/* postgres can not */
/* syntax version 1 */
$f = ($x,$y?)->($x + ($y ?? 0));
select $f(1), $f(2, 3);