diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java index 50445da38b02454..c893f89198bfd95 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java +++ b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java @@ -1486,7 +1486,7 @@ public void setEnableLeftZigZag(boolean enableLeftZigZag) { public boolean enableCommonExprPushdown = true; @VariableMgr.VarAttr(name = ENABLE_LOCAL_EXCHANGE, fuzzy = true, varType = VariableAnnotation.DEPRECATED) - public boolean enableLocalExchange = true; + public boolean enableLocalExchange = false; /** * For debug purpose, don't merge unique key and agg key when reading data. @@ -2357,7 +2357,6 @@ public void initFuzzyModeVariables() { this.parallelPipelineTaskNum = random.nextInt(8); this.parallelPrepareThreshold = random.nextInt(32) + 1; this.enableCommonExprPushdown = random.nextBoolean(); - this.enableLocalExchange = random.nextBoolean(); // This will cause be dead loop, disable it first // this.disableJoinReorder = random.nextBoolean(); this.enableCommonExpPushDownForInvertedIndex = random.nextBoolean();