Function mz_expr::relation::func::fused_window_aggr_no_list

source ·
fn fused_window_aggr_no_list<'a: 'b, 'b, I, A>(
    input_datums: I,
    callers_temp_storage: &'b RowArena,
    wrapped_aggregates: &Vec<AggregateFunc>,
    order_by: &Vec<ColumnOrder>,
    window_frame: &WindowFrame,
) -> impl Iterator<Item = Datum<'b>>
where I: IntoIterator<Item = Datum<'a>>, A: OneByOneAggr,
Expand description

Like fused_window_aggr, but doesn’t perform the final wrapping in a list, returning an Iterator instead.