aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/action/action_nested_query.sql
blob: 0d6e87d79459752297f632e70cb9dab3b5328feb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/* syntax version 1 */
/* postgres can not */
use plato;

define action $action() as
  $sub = (select * from Input);
  select * from $sub order by key;
end define;

do $action();