Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2580,11 +2580,11 @@ public static boolean isEagerAggregationOnJoin() {
@VariableMgr.VarAttr(
name = ENABLE_EXPR_ZONEMAP_FILTER,
fuzzy = true,
description = {"控制 scanner 是否启用表达式 ZoneMap 过滤。默认为 true。",
description = {"控制 scanner 是否启用表达式 ZoneMap 过滤。默认为 false。",
"Controls whether to enable expression ZoneMap filtering in scanners. "
+ "The default value is true."},
+ "The default value is false."},
needForward = true)
public boolean enableExprZonemapFilter = true;
public boolean enableExprZonemapFilter = false;

@VariableMgr.VarAttr(
name = CHECK_ORC_INIT_SARGS_SUCCESS,
Expand Down Expand Up @@ -3663,6 +3663,7 @@ public void initFuzzyModeVariables() {
this.enableSharedExchangeSinkBuffer = random.nextBoolean();
this.useSerialExchange = random.nextBoolean();
this.enableCommonExpPushDownForInvertedIndex = random.nextBoolean();
this.enableExprZonemapFilter = Config.pull_request_id % 2 == 0;
this.disableStreamPreaggregations = random.nextBoolean();
this.enableStreamingAggHashJoinForcePassthrough = random.nextBoolean();
this.enableDistinctStreamingAggForcePassthrough = random.nextBoolean();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import java.util.regex.Pattern
import org.apache.doris.regression.action.ProfileAction

suite("test_expr_zonemap_pruning") {
sql """ set enable_expr_zonemap_filter = true """
sql """ set enable_common_expr_pushdown = true """
sql """ set enable_profile = true """
sql """ set profile_level = 2 """
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import java.util.regex.Pattern
import org.apache.doris.regression.action.ProfileAction

suite("test_expr_zonemap_pruning_p1") {
sql """ set enable_expr_zonemap_filter = true """
sql """ set enable_common_expr_pushdown = true """
sql """ set enable_profile = true """
sql """ set profile_level = 2 """
Expand Down
Loading