blob: 2464b64e32b99d018bfbaddba5448a69dd964a3b [file] [log] [blame]
/*
* Description : Tests that max aggregation correctly returns null for an empty stream,
* without an aggregate combiner.
* Success : Yes
*/
drop dataverse test if exists;
create dataverse test;
use dataverse test;
write output to nc1:"rttest/aggregate_max_empty_01.adm";
max(
for $x in [1, 2, 3]
where $x > 10
return $x
)