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 Jan 29, 2023
1 parent cd8a184 commit bbe43c1
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 @@ -215,7 +215,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 bbe43c1

Please sign in to comment.