From 1bd6f7b931afadda928735b52958277194887603 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 6c61af76a80bb..a6a6427dd32f2 100644 --- a/datafusion/common/src/config.rs +++ b/datafusion/common/src/config.rs @@ -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