aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/action/inline_action.sql
blob: 44586e32e396b27e96f905b018510b3c871d1e3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* syntax version 1 */
/* postgres can not */
do begin 
    select 1;
end do;

evaluate if true do begin
    select 1;
end do
else do begin
    select 2;
end do;

evaluate for $i in AsList(1,2,3) do begin
    select $i;
end do;