aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/action/lib1.sql.txt
blob: 78edb4e0645d3c09a7432201daf711f7721698f9 (plain) (blame)
1
2
3
4
5
6
7
use plato;

define action $action($table) as
  select key,count(*) as cnt from $table group by key order by key;
end define;

export $action;