[WIP] chore(deps): validate DataFusion 52 compatibility #1997
+594
−714
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?
Validation for DataFusion 52 release (apache/datafusion#18566). No iceberg-rust issue.
What changes are included in this PR?
branch-52release branch)FFI_TableProvider::newcall for DataFusion 52 API changesBreaking API Change in DataFusion FFI
DataFusion 52 changed
FFI_TableProvider::newto require two additional arguments:The new arguments:
task_ctx_provider: Provides task execution context for filter expression serialization across FFI boundarylogical_codec: Optional codec for serializing logical expressions (Noneuses default)Known Limitations
Python DataFusion Table Provider Tests Skipped
The
test_datafusion_table_provider.pytests are skipped in this PR due to an FFI version mismatch:datafusion-ffidatafusion(PyPI)The DataFusion FFI ABI is not stable across major versions. The Python bindings for DataFusion 52 are not yet released on PyPI. These tests will be re-enabled when:
pyproject.tomlis updated to usedatafusion==52.*Are these changes tested?
Locally verified:
CI will run the full test suite.