PartitionPrunablePredicate.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;
import org.apache.doris.analysis.Expr;
import org.apache.doris.analysis.SlotRef;
import org.apache.doris.catalog.Column;
import org.apache.doris.catalog.OlapTable;
import org.apache.doris.nereids.trees.expressions.Expression;
import org.apache.doris.nereids.trees.expressions.Slot;
import org.apache.doris.nereids.trees.expressions.SlotReference;
import org.apache.doris.nereids.trees.plans.algebra.OlapScan;
import org.apache.doris.nereids.util.ExpressionUtils;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableSet;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;
/**
* Records that, on the scan whose partition list equals {@link
* #selectedPartitionIds}, the {@link #prunableConjuncts} are guaranteed to
* evaluate to TRUE for every surviving row.
*
* <p>The predicate is registered by {@link
* org.apache.doris.nereids.rules.rewrite.PruneOlapScanPartition} but kept in
* the logical filter during cascades. The actual removal happens later in
* {@link org.apache.doris.nereids.processor.post.PrunePartitionPredicate} so
* that materialized-view rewrite still sees the original predicates. Keeping
* the predicate in the plan avoids the wrong-result problem in which the MV
* view-predicate happens to cover the remaining conjuncts after the partition
* predicate has been silently dropped.
*
* <p>The predicate lives on the scan itself (see {@code LogicalOlapScan} and
* {@code PhysicalOlapScan}) so we no longer need to match it back to its scan
* via a table identifier. Because rewrites between recording and removal may
* rebuild the scan with fresh slot ids, {@link #snapshotPartitionSlots}
* captures the slots that appear in the recorded conjuncts. The post-processor
* maps them onto the actual scan's output slots by column name before
* performing the conjunct removal.
*/
public class PartitionPrunablePredicate {
private final Set<Long> selectedPartitionIds;
private final List<Slot> snapshotPartitionSlots;
private final Set<Expression> prunableConjuncts;
public PartitionPrunablePredicate(Set<Long> selectedPartitionIds,
List<Slot> snapshotPartitionSlots,
Set<Expression> prunableConjuncts) {
this.selectedPartitionIds = ImmutableSet.copyOf(selectedPartitionIds);
this.snapshotPartitionSlots = ImmutableList.copyOf(snapshotPartitionSlots);
this.prunableConjuncts = ImmutableSet.copyOf(prunableConjuncts);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PartitionPrunablePredicate that = (PartitionPrunablePredicate) o;
return selectedPartitionIds.equals(that.selectedPartitionIds)
&& snapshotPartitionSlots.equals(that.snapshotPartitionSlots)
&& prunableConjuncts.equals(that.prunableConjuncts);
}
@Override
public int hashCode() {
return Objects.hash(selectedPartitionIds, snapshotPartitionSlots, prunableConjuncts);
}
public Set<Long> getSelectedPartitionIds() {
return selectedPartitionIds;
}
public List<Slot> getSnapshotPartitionSlots() {
return snapshotPartitionSlots;
}
public Set<Expression> getPrunableConjuncts() {
return prunableConjuncts;
}
/** Get rewritten prunable conjuncts for the scan output slots. */
public Set<Expression> getRewrittenPrunableConjuncts(OlapScan scan, List<Slot> output) {
if (!selectedPartitionIds.containsAll(scan.getSelectedPartitionIds())) {
return ImmutableSet.of();
}
Map<Expression, Expression> slotReplaceMap = buildSlotReplaceMap(
snapshotPartitionSlots, buildNameToSlotMap(scan, output));
if (slotReplaceMap == null) {
return ImmutableSet.of();
}
ImmutableSet.Builder<Expression> rewrittenConjuncts =
ImmutableSet.builderWithExpectedSize(prunableConjuncts.size());
for (Expression conjunct : prunableConjuncts) {
rewrittenConjuncts.add(slotReplaceMap.isEmpty()
? conjunct : ExpressionUtils.replace(conjunct, slotReplaceMap));
}
return rewrittenConjuncts.build();
}
private static Map<String, Slot> buildNameToSlotMap(OlapScan scan, List<Slot> output) {
OlapTable table = scan.getTable();
Map<String, Slot> map = new HashMap<>(output.size());
if (scan.getSelectedIndexId() == table.getBaseIndexId()) {
for (Slot slot : output) {
map.put(slot.getName().toLowerCase(), slot);
}
} else {
for (Slot slot : output) {
if (!(slot instanceof SlotReference)) {
continue;
}
SlotReference slotReference = (SlotReference) slot;
Optional<Column> columnOptional = slotReference.getOriginalColumn();
if (!columnOptional.isPresent()) {
continue;
}
Expr expr = columnOptional.get().getDefineExpr();
if (!(expr instanceof SlotRef)) {
continue;
}
map.put(((SlotRef) expr).getColumnName().toLowerCase(), slot);
}
}
return map;
}
/**
* Map each recorded snapshot slot to the scan's current output slot of the
* same column name. Returns null when any snapshot slot cannot be located,
* so the caller can skip this record.
*/
private static Map<Expression, Expression> buildSlotReplaceMap(
List<Slot> snapshotSlots, Map<String, Slot> nameToOutputSlot) {
Map<Expression, Expression> replaceMap = new HashMap<>(snapshotSlots.size());
for (Slot snapshot : snapshotSlots) {
Slot current = nameToOutputSlot.get(snapshot.getName().toLowerCase());
if (current == null) {
return null;
}
if (!snapshot.equals(current)) {
replaceMap.put(snapshot, current);
}
}
return replaceMap;
}
}