Package

org.apache.spark.sql.catalyst.expressions

aggregate

Permalink

package aggregate

Visibility
  1. Public
  2. All

Type Members

  1. abstract class AggregateFunction2 extends Expression with ImplicitCastInputTypes

    Permalink
  2. abstract class AlgebraicAggregate extends AggregateFunction2 with Serializable with Unevaluable

    Permalink

    A helper class for aggregate functions that can be implemented in terms of catalyst expressions.

  3. case class Average(child: Expression) extends AlgebraicAggregate with Product with Serializable

    Permalink
  4. case class Count(child: Expression) extends AlgebraicAggregate with Product with Serializable

    Permalink
  5. case class First(child: Expression) extends AlgebraicAggregate with Product with Serializable

    Permalink
  6. case class Last(child: Expression) extends AlgebraicAggregate with Product with Serializable

    Permalink
  7. case class Max(child: Expression) extends AlgebraicAggregate with Product with Serializable

    Permalink
  8. case class Min(child: Expression) extends AlgebraicAggregate with Product with Serializable

    Permalink
  9. case class Sum(child: Expression) extends AlgebraicAggregate with Product with Serializable

    Permalink

Value Members

  1. object Utils

    Permalink

    Utility functions used by the query planner to convert our plan to new aggregation code path.

Ungrouped