-
Notifications
You must be signed in to change notification settings - Fork 176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Upgrade to DataFusion 45 #1364
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1364 +/- ##
=============================================
- Coverage 56.12% 39.17% -16.96%
- Complexity 976 2067 +1091
=============================================
Files 119 262 +143
Lines 11743 60323 +48580
Branches 2251 12836 +10585
=============================================
+ Hits 6591 23631 +17040
- Misses 4012 32219 +28207
- Partials 1140 4473 +3333 ☔ View full report in Codecov by Sentry. |
native/Cargo.toml
Outdated
datafusion-execution = { git = "https://github.com/apache/datafusion", rev = "5592834", default-features = false } | ||
datafusion-physical-plan = { git = "https://github.com/apache/datafusion", rev = "5592834", default-features = false } | ||
datafusion-physical-expr = { git = "https://github.com/apache/datafusion", rev = "5592834", default-features = false } | ||
datafusion = { git = "https://github.com/apache/datafusion", rev = "8d006a2", default-features = false, features = ["unicode_expressions", "crypto_expressions"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For my edification, is there a reason why we have to use a git revision. Is this not published to a public repository?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DF 45 is not released yet, but will be in the next week or so. The goal of this and the previous PR is to incrementally update so that we are ready once the release is published.
Which issue does this PR close?
Closes #1304
Follows on from partial upgrade in #1332
Rationale for this change
I plan on bumping the DF rev in this PR until DF 45 is released.
What changes are included in this PR?
How are these changes tested?