This reverts commit d1c6b8114053e8c754c979d8d3fbf5c880d361d2.
This commit is contained in:
@ -247,10 +247,6 @@ public class AggregationNode extends PlanNode {
|
||||
super.debugString()).toString();
|
||||
}
|
||||
|
||||
public boolean isTargetNode() {
|
||||
return id.asInt() == 27 && needsFinalize;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void toThrift(TPlanNode msg) {
|
||||
aggInfo.updateMaterializedSlots();
|
||||
|
||||
@ -406,10 +406,6 @@ public class PlanFragment extends TreeNode<PlanFragment> {
|
||||
return fragmentId;
|
||||
}
|
||||
|
||||
public boolean hasTargetNode() {
|
||||
return planRoot.isTargetNode();
|
||||
}
|
||||
|
||||
public Set<RuntimeFilterId> getBuilderRuntimeFilterIds() {
|
||||
return builderRuntimeFilterIds;
|
||||
}
|
||||
|
||||
@ -207,15 +207,6 @@ public abstract class PlanNode extends TreeNode<PlanNode> implements PlanStats {
|
||||
this.statsDeriveResult = statsDeriveResult;
|
||||
}
|
||||
|
||||
public boolean isTargetNode() {
|
||||
for (PlanNode node : children) {
|
||||
if (node.isTargetNode()) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets tblRefIds_, tupleIds_, and nullableTupleIds_.
|
||||
* The default implementation is a no-op.
|
||||
|
||||
@ -317,12 +317,6 @@ public class Coordinator {
|
||||
this.descTable = planner.getDescTable().toThrift();
|
||||
}
|
||||
|
||||
for (PlanFragment fragment : fragments) {
|
||||
if (fragment.hasTargetNode()) {
|
||||
LOG.info("Log for ISSUE-16517: " + this.descTable.toString());
|
||||
}
|
||||
}
|
||||
|
||||
this.returnedAllResults = false;
|
||||
this.enableShareHashTableForBroadcastJoin = context.getSessionVariable().enableShareHashTableForBroadcastJoin;
|
||||
this.enablePipelineEngine = context.getSessionVariable().enablePipelineEngine;
|
||||
|
||||
Reference in New Issue
Block a user