xzj7019 commented on code in PR #21114: URL: https://github.com/apache/doris/pull/21114#discussion_r1243940331
########## fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/RuntimeFilterContext.java: ########## @@ -59,6 +62,10 @@ public class RuntimeFilterContext { private final Map<Plan, List<ExprId>> joinToTargetExprId = Maps.newHashMap(); + private final Map<CTEId, Set<PhysicalHashJoin>> cteToJoinsMap = Maps.newHashMap(); Review Comment: done ########## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/physical/PhysicalCTEConsumer.java: ########## @@ -77,12 +79,25 @@ public PhysicalCTEConsumer(CTEId cteId, Map<Slot, Slot> consumerToProducerSlotMa LogicalProperties logicalProperties, PhysicalProperties physicalProperties, Statistics statistics) { - super(PlanType.PHYSICAL_CTE_CONSUME, groupExpression, logicalProperties, physicalProperties, statistics); + super(RelationUtil.newRelationId(), PlanType.PHYSICAL_CTE_CONSUME, ImmutableList.of(), groupExpression, + logicalProperties, physicalProperties, statistics); this.cteId = cteId; this.consumerToProducerSlotMap = ImmutableMap.copyOf(consumerToProducerSlotMap); this.producerToConsumerSlotMap = ImmutableMap.copyOf(producerToConsumerSlotMap); } + @Override + public OlapTable getTable() { + Preconditions.checkState(false); + return null; + } + + @Override + public List<String> getQualifier() { + Preconditions.checkState(false); Review Comment: done -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org