Class AggregateQueryOperation

  • All Implemented Interfaces:
    Operation, QueryOperation

    @Internal
    public class AggregateQueryOperation
    extends Object
    implements QueryOperation
    Relational operation that performs computations on top of subsets of input rows grouped by key.
    • Constructor Detail

      • AggregateQueryOperation

        public AggregateQueryOperation​(List<org.apache.flink.table.expressions.ResolvedExpression> groupingExpressions,
                                       List<org.apache.flink.table.expressions.ResolvedExpression> aggregateExpressions,
                                       QueryOperation child,
                                       org.apache.flink.table.catalog.ResolvedSchema resolvedSchema)
    • Method Detail

      • getResolvedSchema

        public org.apache.flink.table.catalog.ResolvedSchema getResolvedSchema()
        Description copied from interface: QueryOperation
        Resolved schema of this operation.
        Specified by:
        getResolvedSchema in interface QueryOperation
      • asSummaryString

        public String asSummaryString()
        Description copied from interface: Operation
        Returns a string that summarizes this operation for printing to a console. An implementation might skip very specific properties.
        Specified by:
        asSummaryString in interface Operation
        Returns:
        summary string of this operation for debugging purposes
      • getGroupingExpressions

        public List<org.apache.flink.table.expressions.ResolvedExpression> getGroupingExpressions()
      • getAggregateExpressions

        public List<org.apache.flink.table.expressions.ResolvedExpression> getAggregateExpressions()