aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/aggr_factory/sum_if.sql
blob: b48b38e153122cb8586a81dc1bc42416e248d33b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* syntax version 1 */
/* postgres can not */
$t = AsList(AsStruct(1 as a),AsStruct(2 as a));
$f = AGGREGATION_FACTORY("sum_if");

select Yql::Aggregate($t, AsTuple(), AsTuple(AsTuple(AsAtom("res"), $f(
    ListItemType(TypeOf($t)), ($z)->{return AsTuple($z.a,$z.a>1)}))));

use plato;
insert into @a select AsTuple(a,a>1) as aa from as_table($t);
commit;
select AGGREGATE_BY(aa,$f) from @a;