We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae2ca6a commit 0f554faCopy full SHA for 0f554fa
datafusion/expr/src/udaf.rs
@@ -351,12 +351,8 @@ pub trait AggregateUDFImpl: Debug + Send + Sync {
351
352
/// Return the fields used to store the intermediate state of this accumulator.
353
///
354
- /// # Arguments:
355
- /// 1. `name`: the name of the expression (e.g. AVG, SUM, etc)
356
- /// 2. `value_type`: Aggregate function output returned by [`Self::return_type`] if defined, otherwise
357
- /// it is equivalent to the data type of the first arguments
358
- /// 3. `ordering_fields`: the fields used to order the input arguments, if any.
359
- /// Empty if no ordering expression is provided.
+ /// args: [`StateFieldsArgs`] contains arguments passed to the
+ /// aggregate function's accumulator.
360
361
/// # Notes:
362
0 commit comments