blob: 2384757bfb638c90bb40ba9ec9717e726d35d6e9 (
plain) (
blame)
1
2
3
4
5
6
|
/* postgres can not */
use plato;
select MULTI_AGGREGATE_BY(AsTuple(subkey,value), AGGREGATION_FACTORY("count")) over w,
MULTI_AGGREGATE_BY(AsTuple(subkey,value), AGGREGATION_FACTORY("max")) over w
from Input window w as (order by key);
|