Skip to content

Commit

Permalink
[fix](constant-folding) disable folding by be by default (apache#37517)
Browse files Browse the repository at this point in the history
  • Loading branch information
morrySnow authored Jul 9, 2024
1 parent 7205762 commit 0833dbe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@ public class SessionVariable implements Serializable, Writable {
private boolean enableJoinReorderBasedCost = false;

@VariableMgr.VarAttr(name = ENABLE_FOLD_CONSTANT_BY_BE, fuzzy = true)
public boolean enableFoldConstantByBe = true;
public boolean enableFoldConstantByBe = false;
@VariableMgr.VarAttr(name = DEBUG_SKIP_FOLD_CONSTANT)
public boolean debugSkipFoldConstant = false;

Expand Down

0 comments on commit 0833dbe

Please sign in to comment.