Packages

package aggregate

Type Members

  1. trait AggregateFunc extends Expression with Serializable

    Base class of the Aggregate Functions.

    Base class of the Aggregate Functions.

    Annotations
    @Evolving()
    Since

    3.2.0

  2. final class Aggregation extends Serializable

    Aggregation in SQL statement.

    Aggregation in SQL statement.

    Annotations
    @Evolving()
    Since

    3.2.0

  3. final class Count extends AggregateFunc

    An aggregate function that returns the number of the specific row in a group.

    An aggregate function that returns the number of the specific row in a group.

    Annotations
    @Evolving()
    Since

    3.2.0

  4. final class CountStar extends AggregateFunc

    An aggregate function that returns the number of rows in a group.

    An aggregate function that returns the number of rows in a group.

    Annotations
    @Evolving()
    Since

    3.2.0

  5. final class Max extends AggregateFunc

    An aggregate function that returns the maximum value in a group.

    An aggregate function that returns the maximum value in a group.

    Annotations
    @Evolving()
    Since

    3.2.0

  6. final class Min extends AggregateFunc

    An aggregate function that returns the minimum value in a group.

    An aggregate function that returns the minimum value in a group.

    Annotations
    @Evolving()
    Since

    3.2.0

  7. final class Sum extends AggregateFunc

    An aggregate function that returns the summation of all the values in a group.

    An aggregate function that returns the summation of all the values in a group.

    Annotations
    @Evolving()
    Since

    3.2.0

Ungrouped