Skip to content

Commit cb221af

Browse files
committed
Enable parquet page level skipping (page index pruning) by default
1 parent e3abcb5 commit cb221af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/common/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ config_namespace! {
227227
pub struct ParquetOptions {
228228
/// If true, uses parquet data page level metadata (Page Index) statistics
229229
/// to reduce the number of rows decoded.
230-
pub enable_page_index: bool, default = false
230+
pub enable_page_index: bool, default = true
231231

232232
/// If true, the parquet reader attempts to skip entire row groups based
233233
/// on the predicate in the query and the metadata (min/max values) stored in

0 commit comments

Comments
 (0)