Skip to content

Commit c6b8211

Browse files
committed
Merge remote-tracking branch 'upstream/branch-49' into branch_49_fix
2 parents e4dd102 + f43df3f commit c6b8211

27 files changed

Lines changed: 718 additions & 127 deletions

File tree

Cargo.lock

Lines changed: 40 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ repository = "https://github.com/apache/datafusion"
7777
# Define Minimum Supported Rust Version (MSRV)
7878
rust-version = "1.85.1"
7979
# Define DataFusion version
80-
version = "49.0.0"
80+
version = "49.0.2"
8181

8282
[workspace.dependencies]
8383
# We turn off default-features for some dependencies here so the workspaces which inherit them can

datafusion/datasource-parquet/src/source.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -469,12 +469,6 @@ impl FileSource for ParquetSource {
469469
.file_column_projection_indices()
470470
.unwrap_or_else(|| (0..base_config.file_schema.fields().len()).collect());
471471

472-
if self.schema_adapter_factory.is_some() {
473-
log::warn!("The SchemaAdapter API will be removed from ParquetSource in a future release. \
474-
Use PhysicalExprAdapterFactory API instead. \
475-
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.");
476-
}
477-
478472
let (expr_adapter_factory, schema_adapter_factory) = match (
479473
base_config.expr_adapter_factory.as_ref(),
480474
self.schema_adapter_factory.as_ref(),

0 commit comments

Comments
 (0)