io.trino.sql.planner.iterative.rule.ProjectOffPushDownRule 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.sql.planner.iterative.rule;
import com.google.common.collect.ImmutableList;
import io.trino.matching.Capture;
import io.trino.matching.Captures;
import io.trino.matching.Pattern;
import io.trino.sql.planner.Symbol;
import io.trino.sql.planner.iterative.Rule;
import io.trino.sql.planner.plan.PlanNode;
import io.trino.sql.planner.plan.ProjectNode;
import java.util.Optional;
import java.util.Set;
import static io.trino.matching.Capture.newCapture;
import static io.trino.sql.planner.iterative.rule.Util.pruneInputs;
import static io.trino.sql.planner.plan.Patterns.project;
import static io.trino.sql.planner.plan.Patterns.source;
/**
* @param The node type to look for under the ProjectNode
* Looks for a Project parent over a N child, such that the parent doesn't use all the output columns of the child.
* Given that situation, invokes the pushDownProjectOff helper to possibly rewrite the child to produce fewer outputs.
*/
public abstract class ProjectOffPushDownRule
implements Rule
{
private final Capture targetCapture = newCapture();
private final Pattern targetPattern;
protected ProjectOffPushDownRule(Pattern targetPattern)
{
this.targetPattern = targetPattern;
}
@Override
public Pattern getPattern()
{
return project()
.with(source().matching(targetPattern.capturedAs(targetCapture)));
}
@Override
public Result apply(ProjectNode parent, Captures captures, Context context)
{
N targetNode = captures.get(targetCapture);
return pruneInputs(targetNode.getOutputSymbols(), parent.getAssignments().getExpressions())
.flatMap(prunedOutputs -> this.pushDownProjectOff(context, targetNode, prunedOutputs))
.map(newChild -> parent.replaceChildren(ImmutableList.of(newChild)))
.map(Result::ofPlanNode)
.orElse(Result.empty());
}
protected abstract Optional pushDownProjectOff(Context context, N targetNode, Set referencedOutputs);
}