Skip to content

Commit

Permalink
Enable parquet page level skipping (page index pruning) by default
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Feb 13, 2023
1 parent e3abcb5 commit cb221af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/common/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ config_namespace! {
pub struct ParquetOptions {
/// If true, uses parquet data page level metadata (Page Index) statistics
/// to reduce the number of rows decoded.
pub enable_page_index: bool, default = false
pub enable_page_index: bool, default = true

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

0 comments on commit cb221af

Please sign in to comment.