[pipeline](exec) disable pipeline load in now version (#21632)
This commit is contained in:
@ -310,7 +310,9 @@ public class Coordinator {
|
||||
|
||||
this.returnedAllResults = false;
|
||||
this.enableShareHashTableForBroadcastJoin = context.getSessionVariable().enableShareHashTableForBroadcastJoin;
|
||||
this.enablePipelineEngine = context.getSessionVariable().getEnablePipelineEngine();
|
||||
// Only enable pipeline query engine in query, not load
|
||||
this.enablePipelineEngine = context.getSessionVariable().getEnablePipelineEngine()
|
||||
&& (fragments.size() > 0 && fragments.get(0).getSink() instanceof ResultSink);
|
||||
initQueryOptions(context);
|
||||
|
||||
setFromUserProperty(context);
|
||||
|
||||
Reference in New Issue
Block a user