xzj7019 commented on code in PR #21883:
URL: https://github.com/apache/doris/pull/21883#discussion_r1270334628
##########
fe/fe-core/src/main/java/org/apache/doris/planner/PlanFragment.java:
##########
@@ -171,8 +170,8 @@ public PlanFragment(PlanFragmentId id, PlanNode root,
DataPartition partition, D
public PlanFragment(PlanFragmentId id, PlanNode root, DataPartition
partition,
Set<RuntimeFilterId> builderRuntimeFilterIds, Set<RuntimeFilterId>
targetRuntimeFilterIds) {
this(id, root, partition);
- this.builderRuntimeFilterIds =
ImmutableSet.copyOf(builderRuntimeFilterIds);
- this.targetRuntimeFilterIds =
ImmutableSet.copyOf(targetRuntimeFilterIds);
+ this.builderRuntimeFilterIds = new HashSet<>(builderRuntimeFilterIds);
Review Comment:
MultiCastPlanFragment needs to update its rf infos during rf generation, for
supporting rf pushing down cte sender. Before this, this info will be
initialized with its children's. So the change is here.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]