From cb221af8fdb3144b2264a4ca8155e1f6c36da372 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Sat, 28 Jan 2023 07:09:16 -0500 Subject: [PATCH] Enable parquet page level skipping (page index pruning) by default --- datafusion/common/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datafusion/common/src/config.rs b/datafusion/common/src/config.rs index 6033d4a0ccf02..6c566229f0319 100644 --- a/datafusion/common/src/config.rs +++ b/datafusion/common/src/config.rs @@ -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