You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge?
pub(crate)fncreate_group_accumulator(agg_expr:&Arc<AggregateFunctionExpr>,) -> Result<Box<dynGroupsAccumulator>>{if agg_expr.groups_accumulator_supported(){
agg_expr.create_groups_accumulator()}else{// Note in the log when the slow path is useddebug!("Creating GroupsAccumulatorAdapter for {}: {agg_expr:?}",
agg_expr.name());let agg_expr_captured = Arc::clone(agg_expr);let factory = move || agg_expr_captured.create_accumulator();Ok(Box::new(GroupsAccumulatorAdapter::new(factory)))}}
If groups_accumulator_supported is not true, we go to the slow path.
Describe the solution you'd like
I want first/last to support fast path create_groups_accumulator. It should be similar to min/max
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Is your feature request related to a problem or challenge?
If
groups_accumulator_supported
is not true, we go to the slow path.Describe the solution you'd like
I want first/last to support fast path
create_groups_accumulator
. It should be similar to min/maxDescribe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: