Skip to content

Commit b15a6de

Browse files
authored
[opt](runtime filter)disable runtime filter prune for external table by default (#60138)
### What problem does this PR solve? set runtime_filter_prune_for_external default value to false
1 parent 73ebf74 commit b15a6de

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1095,7 +1095,7 @@ public static double getHotValueThreshold() {
10951095
public int autoProfileThresholdMs = -1;
10961096

10971097
@VariableMgr.VarAttr(name = "runtime_filter_prune_for_external", fuzzy = true)
1098-
public boolean runtimeFilterPruneForExternal = true;
1098+
public boolean runtimeFilterPruneForExternal = false;
10991099

11001100
@VariableMgr.VarAttr(name = "runtime_filter_jump_threshold")
11011101
public int runtimeFilterJumpThreshold = 2;
@@ -3540,7 +3540,6 @@ private void setFuzzyForCatalog(Random random) {
35403540

35413541
// common
35423542
this.enableCountPushDownForExternalTable = random.nextBoolean();
3543-
this.runtimeFilterPruneForExternal = random.nextBoolean();
35443543
}
35453544

35463545
public String printFuzzyVariables() {

0 commit comments

Comments
 (0)