Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Mryange committed Oct 18, 2024
1 parent d62a2b2 commit 9a7f0ce
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1420,7 +1420,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 @@ -2229,7 +2229,7 @@ public void initFuzzyModeVariables() {
this.parallelPipelineTaskNum = random.nextInt(8);
this.parallelPrepareThreshold = random.nextInt(32) + 1;
this.enableCommonExprPushdown = random.nextBoolean();
this.enableLocalExchange = random.nextBoolean();
this.enableLocalExchange = false;
// This will cause be dead loop, disable it first
// this.disableJoinReorder = random.nextBoolean();
this.enableCommonExpPushDownForInvertedIndex = random.nextBoolean();
Expand Down

0 comments on commit 9a7f0ce

Please sign in to comment.