Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mryange committed Nov 28, 2024
1 parent 256651a commit f0fe372
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit f0fe372

Please sign in to comment.