aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/action/define_simple_action.sql
blob: 60244b3b48d7361e4c69e44a77ecc81e24696a83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/* syntax version 1 */
/* postgres can not */
define action $action($b,$c) as
    $d = $b + $c;
    select $b;
    select $c;
    select $d;
end define;

do $action(1,2);