chore: update datafusion to 54.0.0#151
Open
jordepic wants to merge 1 commit into
Open
Conversation
FileFormat and FileSource gained Any as a supertrait with a provided as_any, so the manual overrides are removed.
jordepic
added a commit
to datafusion-contrib/StreamFusion
that referenced
this pull request
Jul 7, 2026
Arrow 59 needs a DataFusion release that ships it, and none exists yet (54.0.0, the latest, still pins arrow 58.3; the bump sits unreleased on DataFusion main). Landing 54 now — same arrow line — absorbs the DataFusion API churn separately, so the eventual arrow 59 commit shrinks to the arrow/ptars/fluss pins. The churn is small: Any became a supertrait of the UDF and file-source traits with a provided as_any (the manual overrides are deleted), and SimplifyContext moved to a builder. datafusion-orc has no 54-compatible rev upstream, so it is pinned to a temporary fork carrying only that bump, with the upstream PR open (datafusion-contrib/datafusion-orc#151) — repoint when it merges, the same retirement path as the fluss fork. Revisited divergence 16 as its note asks: DataFusion 54's scan path still registers no memory consumers, so file scans stay un-pool-wired.
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.
Updates to datafusion 54.0.0 (same arrow 58.3 line as 53.1.0).
FileFormatandFileSourcegainedAnyas a supertrait with a providedas_anyin datafusion 54, so the manual overrides are removed.