From ec00d766af11228fb7c135a1c07507876a8fd41d Mon Sep 17 00:00:00 2001 From: englefly Date: Tue, 12 Sep 2023 12:12:31 +0800 Subject: [PATCH] pick --- .../processor/post/RecomputeLogicalPropertiesProcessor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/RecomputeLogicalPropertiesProcessor.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/RecomputeLogicalPropertiesProcessor.java index 73ac8d51d1fac8c..37a858c1a3d4082 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/RecomputeLogicalPropertiesProcessor.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/RecomputeLogicalPropertiesProcessor.java @@ -18,6 +18,7 @@ package org.apache.doris.nereids.processor.post; import org.apache.doris.nereids.CascadesContext; +import org.apache.doris.nereids.trees.plans.AbstractPlan; import org.apache.doris.nereids.trees.plans.Plan; import org.apache.doris.nereids.trees.plans.physical.PhysicalPlan; @@ -31,7 +32,6 @@ public Plan visit(Plan plan, CascadesContext ctx) { physicalPlan = physicalPlan.resetLogicalProperties(); physicalPlan = physicalPlan.withPhysicalPropertiesAndStats(physicalPlan.getPhysicalProperties(), ((AbstractPlan) plan).getStats()); - physicalPlan.setMutableState(MutableState.KEY_GROUP, plan.getGroupIdAsString()); return physicalPlan; } }