io.trino.cost.UnionStatsRule Maven / Gradle / Ivy
/*
* 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 io.trino.cost;
import com.google.common.collect.ListMultimap;
import io.trino.cost.StatsCalculator.Context;
import io.trino.matching.Pattern;
import io.trino.sql.planner.Symbol;
import io.trino.sql.planner.plan.PlanNode;
import io.trino.sql.planner.plan.UnionNode;
import java.util.Optional;
import static com.google.common.base.Preconditions.checkArgument;
import static io.trino.cost.PlanNodeStatsEstimateMath.addStatsAndCollapseDistinctValues;
import static io.trino.sql.planner.plan.Patterns.union;
public class UnionStatsRule
extends SimpleStatsRule
{
private static final Pattern PATTERN = union();
public UnionStatsRule(StatsNormalizer normalizer)
{
super(normalizer);
}
@Override
public Pattern getPattern()
{
return PATTERN;
}
@Override
protected final Optional doCalculate(UnionNode node, Context context)
{
checkArgument(!node.getSources().isEmpty(), "Empty Union is not supported");
Optional estimate = Optional.empty();
for (int i = 0; i < node.getSources().size(); i++) {
PlanNode source = node.getSources().get(i);
PlanNodeStatsEstimate sourceStats = context.statsProvider().getStats(source);
PlanNodeStatsEstimate sourceStatsWithMappedSymbols = mapToOutputSymbols(sourceStats, node.getSymbolMapping(), i);
if (estimate.isPresent()) {
estimate = Optional.of(addStatsAndCollapseDistinctValues(estimate.get(), sourceStatsWithMappedSymbols));
}
else {
estimate = Optional.of(sourceStatsWithMappedSymbols);
}
}
return estimate;
}
private PlanNodeStatsEstimate mapToOutputSymbols(PlanNodeStatsEstimate estimate, ListMultimap mapping, int index)
{
PlanNodeStatsEstimate.Builder mapped = PlanNodeStatsEstimate.builder()
.setOutputRowCount(estimate.getOutputRowCount());
mapping.keySet()
.forEach(symbol -> mapped.addSymbolStatistics(symbol, estimate.getSymbolStatistics(mapping.get(symbol).get(index))));
return mapped.build();
}
}