summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/aggregate/table_funcs_spec_aggregation.yql
blob: 0b552764a59bac97e1fb4d19c64159eb896b7f42 (plain) (blame)
1
2
3
4
5
6
7
8
9
use plato;

--insert into Output
select
  key,
  max(TablePath()) as table_rec
from Input
group by key
;