This is an automated email from the ASF dual-hosted git repository. dheres pushed a commit to branch enable_parquet_page_level_skipping in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
commit e157ce7001f0464c43a0465fddb4ed002e1d6d56 Author: Daniƫl Heres <[email protected]> AuthorDate: Mon Feb 6 09:31:25 2023 +0100 Add page level skipping by default --- datafusion/core/src/datasource/datasource.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/datafusion/core/src/datasource/datasource.rs b/datafusion/core/src/datasource/datasource.rs index 8b0c823ac..e782ba5ae 100644 --- a/datafusion/core/src/datasource/datasource.rs +++ b/datafusion/core/src/datasource/datasource.rs @@ -76,6 +76,7 @@ pub trait TableProvider: Sync + Send { &self, _filter: &Expr, ) -> Result<TableProviderFilterPushDown> { + Ok(TableProviderFilterPushDown::Unsupported) }
