LogicalExcept.java
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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 org.apache.doris.nereids.trees.plans.logical;
import org.apache.doris.nereids.memo.GroupExpression;
import org.apache.doris.nereids.properties.DataTrait;
import org.apache.doris.nereids.properties.DataTrait.Builder;
import org.apache.doris.nereids.properties.LogicalProperties;
import org.apache.doris.nereids.trees.expressions.NamedExpression;
import org.apache.doris.nereids.trees.expressions.Slot;
import org.apache.doris.nereids.trees.expressions.SlotReference;
import org.apache.doris.nereids.trees.plans.Plan;
import org.apache.doris.nereids.trees.plans.PlanType;
import org.apache.doris.nereids.trees.plans.visitor.PlanVisitor;
import org.apache.doris.nereids.util.Utils;
import com.google.common.base.Preconditions;
import com.google.common.collect.ImmutableSet;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Optional;
/**
* Logical Except.
*/
public class LogicalExcept extends LogicalSetOperation {
public LogicalExcept(Qualifier qualifier, List<Plan> inputs) {
super(PlanType.LOGICAL_EXCEPT, qualifier, inputs);
}
public LogicalExcept(Qualifier qualifier, List<NamedExpression> outputs,
List<List<SlotReference>> childrenOutputs, List<Plan> children) {
super(PlanType.LOGICAL_EXCEPT, qualifier, outputs, childrenOutputs, children);
}
public LogicalExcept(Qualifier qualifier, List<NamedExpression> outputs, List<List<SlotReference>> childrenOutputs,
Optional<GroupExpression> groupExpression, Optional<LogicalProperties> logicalProperties,
List<Plan> children) {
super(PlanType.LOGICAL_EXCEPT, qualifier, outputs, childrenOutputs,
groupExpression, logicalProperties, children);
}
@Override
public String toString() {
return Utils.toSqlString("LogicalExcept",
"qualifier", qualifier,
"outputs", outputs,
"regularChildrenOutputs", regularChildrenOutputs);
}
@Override
public <R, C> R accept(PlanVisitor<R, C> visitor, C context) {
return visitor.visitLogicalExcept(this, context);
}
@Override
public LogicalExcept withChildren(List<Plan> children) {
return new LogicalExcept(qualifier, outputs, regularChildrenOutputs, children);
}
@Override
public LogicalExcept withChildrenAndTheirOutputs(List<Plan> children,
List<List<SlotReference>> childrenOutputs) {
Preconditions.checkArgument(children.size() == childrenOutputs.size(),
"children size %s is not equals with children outputs size %s",
children.size(), childrenOutputs.size());
return new LogicalExcept(qualifier, outputs, childrenOutputs, children);
}
@Override
public LogicalExcept withGroupExpression(Optional<GroupExpression> groupExpression) {
return new LogicalExcept(qualifier, outputs, regularChildrenOutputs, groupExpression,
Optional.of(getLogicalProperties()), children);
}
@Override
public Plan withGroupExprLogicalPropChildren(Optional<GroupExpression> groupExpression,
Optional<LogicalProperties> logicalProperties, List<Plan> children) {
return new LogicalExcept(qualifier, outputs, regularChildrenOutputs,
groupExpression, logicalProperties, children);
}
@Override
public LogicalExcept withNewOutputs(List<NamedExpression> newOutputs) {
return new LogicalExcept(qualifier, newOutputs, regularChildrenOutputs,
Optional.empty(), Optional.empty(), children);
}
private Map<Slot, Slot> constructReplaceMapForChild(int index) {
Map<Slot, Slot> replaceMap = new HashMap<>();
List<Slot> output = getOutput();
for (int i = 0; i < output.size(); i++) {
replaceMap.put(regularChildrenOutputs.get(index).get(i), output.get(i));
}
return replaceMap;
}
@Override
public void computeUnique(Builder builder) {
builder.addUniqueSlot(child(0).getLogicalProperties().getTrait());
if (qualifier == Qualifier.DISTINCT) {
builder.addUniqueSlot(ImmutableSet.copyOf(getOutput()));
}
builder.replaceUniqueBy(constructReplaceMapForChild(0));
}
@Override
public void computeEqualSet(DataTrait.Builder builder) {
builder.addEqualSet(child(0).getLogicalProperties().getTrait());
builder.replaceEqualSetBy(constructReplaceMapForChild(0));
}
@Override
public void computeFd(DataTrait.Builder builder) {
builder.addFuncDepsDG(child(0).getLogicalProperties().getTrait());
builder.replaceFuncDepsBy(constructReplaceMapForChild(0));
}
@Override
public void computeUniform(Builder builder) {
builder.addUniformSlot(child(0).getLogicalProperties().getTrait());
builder.replaceUniformBy(constructReplaceMapForChild(0));
}
}