aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/action/subquery_opt_args.sql
blob: b3c1c8a75726edfc79d0c351bf30fe45379ce74b (plain) (blame)
1
2
3
4
5
6
7
8
/* syntax version 1 */
/* postgres can not */
define subquery $sub($a,$b?) as
    select $a + ($b ?? 0);
end define;

process $sub(1);
process $sub(2, 3);