After #207, we're missing a test for aggregates over the entirety of a dataset (ungrouped & un-windowed). In OSS using group() causes the group-aggregate pushdown to be triggered, but I think within the pushdown logic it ends up using a different iterator/cursor than you'd get with group(columns: ["foo", "bar"]).
After #207, we're missing a test for aggregates over the entirety of a dataset (ungrouped & un-windowed). In OSS using
group()
causes the group-aggregate pushdown to be triggered, but I think within the pushdown logic it ends up using a different iterator/cursor than you'd get withgroup(columns: ["foo", "bar"])
.