Re-exports§
pub use self::accumulator::Accumulator;
pub use self::accumulator::AggregateFunctionCreator;
pub use self::accumulator::AggregateFunctionCreatorRef;
Modules§
- Accumulator module contains the trait definition for aggregation function’s accumulators.
- expr 🔒
- udaf 🔒Udaf module contains functions and structs supporting user-defined aggregate functions.
Structs§
- Logical representation of a user-defined aggregate function (UDAF) A UDAF is different from a UDF in that it is stateful across batches.
Traits§
- The datafusion
[LogicalPlan]
decoder.
Functions§
- Rename columns by applying a new projection. Returns an error if the column to be renamed does not exist. The
renames
parameter is aVector
with elements in the form of(old_name, new_name)
.