Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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.plan;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableSet;
import com.google.errorprone.annotations.Immutable;
import io.trino.sql.planner.Symbol;
import io.trino.sql.tree.Expression;
import java.util.List;
import java.util.Optional;
import java.util.Set;
import static com.google.common.base.Preconditions.checkArgument;
import static java.util.Objects.requireNonNull;
@Immutable
public class SpatialJoinNode
extends PlanNode
{
public enum Type
{
INNER("SpatialInnerJoin"),
LEFT("SpatialLeftJoin");
private final String joinLabel;
Type(String joinLabel)
{
this.joinLabel = joinLabel;
}
public String getJoinLabel()
{
return joinLabel;
}
public static Type fromJoinNodeType(JoinNode.Type joinNodeType)
{
return switch (joinNodeType) {
case INNER -> Type.INNER;
case LEFT -> Type.LEFT;
default -> throw new IllegalArgumentException("Unsupported spatial join type: " + joinNodeType);
};
}
}
private final Type type;
private final PlanNode left;
private final PlanNode right;
private final List outputSymbols;
private final Expression filter;
private final Optional leftPartitionSymbol;
private final Optional rightPartitionSymbol;
private final Optional kdbTree;
private final DistributionType distributionType;
public enum DistributionType
{
PARTITIONED,
REPLICATED
}
@JsonCreator
public SpatialJoinNode(
@JsonProperty("id") PlanNodeId id,
@JsonProperty("type") Type type,
@JsonProperty("left") PlanNode left,
@JsonProperty("right") PlanNode right,
@JsonProperty("outputSymbols") List outputSymbols,
@JsonProperty("filter") Expression filter,
@JsonProperty("leftPartitionSymbol") Optional leftPartitionSymbol,
@JsonProperty("rightPartitionSymbol") Optional rightPartitionSymbol,
@JsonProperty("kdbTree") Optional kdbTree)
{
super(id);
this.type = requireNonNull(type, "type is null");
this.left = requireNonNull(left, "left is null");
this.right = requireNonNull(right, "right is null");
this.outputSymbols = ImmutableList.copyOf(requireNonNull(outputSymbols, "outputSymbols is null"));
this.filter = requireNonNull(filter, "filter is null");
this.leftPartitionSymbol = requireNonNull(leftPartitionSymbol, "leftPartitionSymbol is null");
this.rightPartitionSymbol = requireNonNull(rightPartitionSymbol, "rightPartitionSymbol is null");
this.kdbTree = requireNonNull(kdbTree, "kdbTree is null");
Set inputSymbols = ImmutableSet.builder()
.addAll(left.getOutputSymbols())
.addAll(right.getOutputSymbols())
.build();
checkArgument(inputSymbols.containsAll(outputSymbols), "Left and right join inputs do not contain all output symbols");
if (kdbTree.isPresent()) {
checkArgument(leftPartitionSymbol.isPresent(), "Left partition symbol is missing");
checkArgument(rightPartitionSymbol.isPresent(), "Right partition symbol is missing");
checkArgument(left.getOutputSymbols().contains(leftPartitionSymbol.get()), "Left side of join does not contain left partition symbol");
checkArgument(right.getOutputSymbols().contains(rightPartitionSymbol.get()), "Right side of join does not contain right partition symbol");
this.distributionType = DistributionType.PARTITIONED;
}
else {
checkArgument(leftPartitionSymbol.isEmpty(), "Left partition symbol is missing");
checkArgument(rightPartitionSymbol.isEmpty(), "Right partition symbol is missing");
this.distributionType = DistributionType.REPLICATED;
}
}
@JsonProperty("type")
public Type getType()
{
return type;
}
@JsonProperty("left")
public PlanNode getLeft()
{
return left;
}
@JsonProperty("right")
public PlanNode getRight()
{
return right;
}
@JsonProperty("filter")
public Expression getFilter()
{
return filter;
}
@JsonProperty("leftPartitionSymbol")
public Optional getLeftPartitionSymbol()
{
return leftPartitionSymbol;
}
@JsonProperty("rightPartitionSymbol")
public Optional getRightPartitionSymbol()
{
return rightPartitionSymbol;
}
@Override
public List getSources()
{
return ImmutableList.of(left, right);
}
@Override
@JsonProperty("outputSymbols")
public List getOutputSymbols()
{
return outputSymbols;
}
@JsonProperty("distributionType")
public DistributionType getDistributionType()
{
return distributionType;
}
@JsonProperty("kdbTree")
public Optional getKdbTree()
{
return kdbTree;
}
@Override
public R accept(PlanVisitor visitor, C context)
{
return visitor.visitSpatialJoin(this, context);
}
@Override
public PlanNode replaceChildren(List newChildren)
{
checkArgument(newChildren.size() == 2, "expected newChildren to contain 2 nodes");
return new SpatialJoinNode(getId(), type, newChildren.get(0), newChildren.get(1), outputSymbols, filter, leftPartitionSymbol, rightPartitionSymbol, kdbTree);
}
}