All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.trino.sql.planner.iterative.rule.ReplaceRedundantJoinWithSource Maven / Gradle / Ivy

There is a newer version: 465
Show newest version
/*
 * 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.ImmutableSet;
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.optimizations.Cardinality;
import io.trino.sql.planner.plan.FilterNode;
import io.trino.sql.planner.plan.JoinNode;
import io.trino.sql.planner.plan.PlanNode;

import java.util.List;

import static io.trino.sql.planner.iterative.rule.Util.restrictOutputs;
import static io.trino.sql.planner.optimizations.QueryCardinalityUtil.extractCardinality;
import static io.trino.sql.planner.plan.Patterns.join;

/**
 * This rule transforms plans with joins, where:
 * - one of the sources is scalar and produces no output symbols.
 * In case of LEFT or RIGHT join, it has to be the inner source.
 * In case of FULL or INNER join, it can be either source.
 * - the other join source is at least scalar (not known to be empty).
 * 

* The join is replaced with the other source and an optional * pruning projection. *

* Note: This rule does not transform plans where either join source * is empty. Such plans are transformed by RemoveRedundantJoin * and ReplaceRedundantJoinWithProject rules. */ public class ReplaceRedundantJoinWithSource implements Rule { private static final Pattern PATTERN = join(); @Override public Pattern getPattern() { return PATTERN; } @Override public Result apply(JoinNode node, Captures captures, Context context) { Cardinality leftCardinality = extractCardinality(node.getLeft(), context.getLookup()); if (leftCardinality.isEmpty()) { return Result.empty(); } Cardinality rightCardinality = extractCardinality(node.getRight(), context.getLookup()); if (rightCardinality.isEmpty()) { return Result.empty(); } boolean leftSourceScalarWithNoOutputs = node.getLeft().getOutputSymbols().isEmpty() && leftCardinality.isScalar(); boolean rightSourceScalarWithNoOutputs = node.getRight().getOutputSymbols().isEmpty() && rightCardinality.isScalar(); return switch (node.getType()) { case INNER -> { PlanNode source; List sourceOutputs; if (leftSourceScalarWithNoOutputs) { source = node.getRight(); sourceOutputs = node.getRightOutputSymbols(); } else if (rightSourceScalarWithNoOutputs) { source = node.getLeft(); sourceOutputs = node.getLeftOutputSymbols(); } else { yield Result.empty(); } if (node.getFilter().isPresent()) { source = new FilterNode(context.getIdAllocator().getNextId(), source, node.getFilter().get()); } yield Result.ofPlanNode(restrictOutputs(context.getIdAllocator(), source, ImmutableSet.copyOf(sourceOutputs)).orElse(source)); } case LEFT -> rightSourceScalarWithNoOutputs ? Result.ofPlanNode(restrictOutputs(context.getIdAllocator(), node.getLeft(), ImmutableSet.copyOf(node.getLeftOutputSymbols())) .orElse(node.getLeft())) : Result.empty(); case RIGHT -> leftSourceScalarWithNoOutputs ? Result.ofPlanNode(restrictOutputs(context.getIdAllocator(), node.getRight(), ImmutableSet.copyOf(node.getRightOutputSymbols())) .orElse(node.getRight())) : Result.empty(); case FULL -> { if (leftSourceScalarWithNoOutputs && rightCardinality.isAtLeastScalar()) { yield Result.ofPlanNode(restrictOutputs(context.getIdAllocator(), node.getRight(), ImmutableSet.copyOf(node.getRightOutputSymbols())) .orElse(node.getRight())); } if (rightSourceScalarWithNoOutputs && leftCardinality.isAtLeastScalar()) { yield Result.ofPlanNode(restrictOutputs(context.getIdAllocator(), node.getLeft(), ImmutableSet.copyOf(node.getLeftOutputSymbols())) .orElse(node.getLeft())); } yield Result.empty(); } }; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy