use of org.apache.flink.table.planner.plan.nodes.logical.FlinkLogicalAggregate in project flink by apache.
the class RelTimeIndicatorConverter method visitAggregate.
private FlinkLogicalAggregate visitAggregate(FlinkLogicalAggregate agg) {
RelNode newInput = convertAggInput(agg);
List<AggregateCall> updatedAggCalls = convertAggregateCalls(agg);
return (FlinkLogicalAggregate) agg.copy(agg.getTraitSet(), newInput, agg.getGroupSet(), agg.getGroupSets(), updatedAggCalls);
}
Aggregations