Package org.apache.spark.sql.connector.expressions.aggregate


package org.apache.spark.sql.connector.expressions.aggregate
  • Class
    Description
    Base class of the Aggregate Functions.
    Aggregation in SQL statement.
    An aggregate function that returns the mean of all the values in a group.
    An aggregate function that returns the number of the specific row in a group.
    An aggregate function that returns the number of rows in a group.
    The general implementation of AggregateFunc, which contains the upper-cased function name, the `isDistinct` flag and all the inputs.
    An aggregate function that returns the maximum value in a group.
    An aggregate function that returns the minimum value in a group.
    An aggregate function that returns the summation of all the values in a group.
    The general representation of user defined aggregate function, which implements AggregateFunc, contains the upper-cased function name, the canonical function name, the `isDistinct` flag and all the inputs.