This is an automated email from the ASF dual-hosted git repository. adriangb pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/datafusion.git
The following commit(s) were added to refs/heads/main by this push: new 0183244a42 remove warning from every file open (#16968) 0183244a42 is described below commit 0183244a426e5e1fda28c7b6e6961f70f04c0744 Author: Adrian Garcia Badaracco <1755071+adria...@users.noreply.github.com> AuthorDate: Tue Jul 29 13:30:46 2025 -0500 remove warning from every file open (#16968) this is too noisy and not helpful yet, we don't have a fully implemented alternative --- datafusion/datasource-parquet/src/source.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/datafusion/datasource-parquet/src/source.rs b/datafusion/datasource-parquet/src/source.rs index 76a1a8c08a..430cb5ce54 100644 --- a/datafusion/datasource-parquet/src/source.rs +++ b/datafusion/datasource-parquet/src/source.rs @@ -469,12 +469,6 @@ impl FileSource for ParquetSource { .file_column_projection_indices() .unwrap_or_else(|| (0..base_config.file_schema.fields().len()).collect()); - if self.schema_adapter_factory.is_some() { - log::warn!("The SchemaAdapter API will be removed from ParquetSource in a future release. \ - Use PhysicalExprAdapterFactory API instead. \ - See https://github.com/apache/datafusion/issues/16800 for discussion and https://datafusion.apache.org/library-user-guide/upgrading.html#datafusion-49-0-0 for upgrade instructions."); - } - let (expr_adapter_factory, schema_adapter_factory) = match ( base_config.expr_adapter_factory.as_ref(), self.schema_adapter_factory.as_ref(), --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@datafusion.apache.org For additional commands, e-mail: commits-h...@datafusion.apache.org