nested_action.sql 268 B

1234567891011121314
  1. /* syntax version 1 */
  2. /* postgres can not */
  3. define action $action($b,$c) as
  4. define action $aaa() as
  5. select $b;
  6. end define;
  7. define action $bbb() as
  8. select $c;
  9. end define;
  10. do $aaa();
  11. do $bbb();
  12. end define;
  13. do $action(1,2);