PruneOrderByInAggregation.java
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.facebook.presto.sql.planner.iterative.rule;
import com.facebook.presto.matching.Captures;
import com.facebook.presto.matching.Pattern;
import com.facebook.presto.metadata.FunctionAndTypeManager;
import com.facebook.presto.spi.plan.AggregationNode;
import com.facebook.presto.spi.relation.VariableReferenceExpression;
import com.facebook.presto.sql.planner.iterative.Rule;
import com.google.common.collect.ImmutableMap;
import java.util.Map;
import java.util.Optional;
import static com.facebook.presto.spi.plan.AggregationNode.Aggregation;
import static com.facebook.presto.sql.planner.plan.Patterns.aggregation;
import static java.util.Objects.requireNonNull;
public class PruneOrderByInAggregation
implements Rule<AggregationNode>
{
private static final Pattern<AggregationNode> PATTERN = aggregation();
private final FunctionAndTypeManager functionAndTypeManager;
public PruneOrderByInAggregation(FunctionAndTypeManager functionAndTypeManager)
{
this.functionAndTypeManager = requireNonNull(functionAndTypeManager, "functionManager is null");
}
@Override
public Pattern<AggregationNode> getPattern()
{
return PATTERN;
}
@Override
public Result apply(AggregationNode node, Captures captures, Context context)
{
if (!node.hasOrderings()) {
return Result.empty();
}
boolean anyRewritten = false;
ImmutableMap.Builder<VariableReferenceExpression, Aggregation> aggregations = ImmutableMap.builder();
for (Map.Entry<VariableReferenceExpression, Aggregation> entry : node.getAggregations().entrySet()) {
Aggregation aggregation = entry.getValue();
if (!aggregation.getOrderBy().isPresent()) {
aggregations.put(entry);
}
// getAggregateFunctionImplementation can be expensive, so check it last.
else if (functionAndTypeManager.getAggregateFunctionImplementation(aggregation.getFunctionHandle()).isOrderSensitive()) {
aggregations.put(entry);
}
else {
anyRewritten = true;
aggregations.put(entry.getKey(), new Aggregation(
aggregation.getCall(),
aggregation.getFilter(),
Optional.empty(),
aggregation.isDistinct(),
aggregation.getMask()));
}
}
if (!anyRewritten) {
return Result.empty();
}
return Result.ofPlanNode(new AggregationNode(
node.getSourceLocation(),
node.getId(),
node.getSource(),
aggregations.build(),
node.getGroupingSets(),
node.getPreGroupedVariables(),
node.getStep(),
node.getHashVariable(),
node.getGroupIdVariable(),
node.getAggregationId()));
}
}