summaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/aggr_factory/transform_input.yql
blob: 0a77e6ba308e941e8d40a6c33afd7bc152488395 (plain) (blame)
1
2
3
4
5
6
$f = AGGREGATION_FACTORY("sum");
$g = AggregateTransformInput($f, ($x)->(cast($x as Int32)));
$h = AggregateTransformInput($f, ($x)->($x * 2));
select ListAggregate([1,2,3], $f);
select ListAggregate(["1","2","3"], $g);
select ListAggregate([1,2,3], $h);