summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/action/define_simple_action.yql
blob: 0e1efb6013fdbbd233c76d9a01efda6a1acebdd7 (plain) (blame)
1
2
3
4
5
6
7
8
define action $action($b,$c) as
    $d = $b + $c;
    select $b;
    select $c;
    select $d;
end define;

do $action(1,2);