Struct datafusion::physical_plan::expressions::Sum [−][src]
pub struct Sum { /* fields omitted */ }
Expand description
SUM aggregate expression
Implementations
Trait Implementations
the fields that encapsulate the Accumulator’s state the number of fields here equals the number of states that the accumulator contains Read more
expressions that are passed to the Accumulator.
Single-column aggregations such as sum
return a single value, others (e.g. cov
) return many. Read more
the accumulator used to accumulate values from the expressions.
the accumulator expects the same number of arguments as expressions
and must
return states with the same description as state_fields
Read more