Draft
Conversation
# Conflicts: # native/Cargo.lock # native/Cargo.toml # native/core/Cargo.toml # native/core/src/execution/operators/iceberg_scan.rs
This was referenced Mar 17, 2026
Closed
Contributor
Author
|
So the shuffle failures are related to apache/arrow-rs#9506 I opened an upstream bug for hash join: apache/datafusion#20995 |
Contributor
Author
|
Down to |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Which issue does this PR close?
N/A.
Rationale for this change
Test DataFusion with 53.0.
What changes are included in this PR?
Dependency changes:
datafusion,datafusion-datasource,datafusion-physical-expr-adapter,datafusion-spark→ git tag53.0.0-rc2datafusion-sparknow withfeatures = ["core"]arrow57.3.0 → 58.0.0parquet57.3.0 → 58.0.0object_store0.12.3 → 0.13.1icebergupdated to latestdf53-upgradebranchAPI fixes:
ExecutionPlan::properties()returns&Arc<PlanProperties>— wrappedcachefields inArcacross 5 filesExecutionPlan::statistics()fromparquet_writerandshuffle_writerHashJoinExec::try_newtakes newnull_aware: boolparam — addedfalsePhysicalExprAdapterFactory::createnow returnsResult— added?andOk()EncryptionFactorymethods returnResult<...>instead ofResult<..., DataFusionError>DefaultPhysicalExprAdapterFactory::createnow returnsResult— added?func.coerce_types()withfields_with_udf()increate_scalar_function_expr— fixes type coercion for UDFs usingSignature::coercible(e.g.array_repeatexpecting Int64 count)SparkArrayRepeatfromdatafusion-sparkfor Spark-compatible null semanticshdfsObjectStoreimpl toobject_store0.13 API — removed trait methods moved toObjectStoreExt(get,get_range,head,delete,copy,rename,copy_if_not_exists), added new required methods (delete_stream,copy_opts), rewroteget_rangesto useread_rangedirectlyFeature-gated (blocked on upstream):
iceberg— gated behindicebergfeature (iceberg-ruststill onarrow57)hdfs-opendal— removed from defaults (object_store_opendalstill on 0.12, tracking opendal#7237)Known test issue:
test_batch_coalescing_reduces_sizefails due to debug assertion bug inarrow-select58.0.0 (arrow-rs#9506, fixed in arrow-rs#9508)Remaining warnings:
CoalesceBatchesExecis deprecated (needs separate migration)runtime_envunused whenhdfs-opendalis off (expected)How are these changes tested?
Existing tests.