pub fn run(
stmt: &SelectStatement,
rows: &[&Row],
schema_cols: &[ColumnSchema],
table_alias: Option<&str>,
) -> Result<AggResult, EvalError>Expand description
Execute aggregate logic against an already-WHERE-filtered iterator of
rows. table_alias is the alias accepted by column resolution.