Skip to content

Commit e3264f5

Browse files
committed
Enable row pushdown and predicate reordering by default
1 parent 6d00bd9 commit e3264f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

datafusion/core/src/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,14 +229,14 @@ impl BuiltInConfigs {
229229
OPT_PARQUET_PUSHDOWN_FILTERS,
230230
"If true, filter expressions are be applied during the parquet decoding operation to \
231231
reduce the number of rows decoded.",
232-
false,
232+
true,
233233
),
234234
ConfigDefinition::new_bool(
235235
OPT_PARQUET_REORDER_FILTERS,
236236
"If true, filter expressions evaluated during the parquet decoding opearation \
237237
will be reordered heuristically to minimize the cost of evaluation. If false, \
238238
the filters are applied in the same order as written in the query.",
239-
false,
239+
true,
240240
),
241241
ConfigDefinition::new_bool(
242242
OPT_PARQUET_ENABLE_PAGE_INDEX,

0 commit comments

Comments
 (0)