-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Re-export Arrow and Parquet crates from DataFusion #39
Conversation
Codecov Report
@@ Coverage Diff @@
## master #39 +/- ##
=======================================
Coverage 75.83% 75.83%
=======================================
Files 135 135
Lines 23152 23152
=======================================
Hits 17557 17557
Misses 5595 5595
Continue to review full report at Codecov.
|
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.
LGTM. Thanks a lot, @returnString !
Could you rebase / address conflicts?
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.
I agree -- super helpful @returnString . Thank you
1ddbbf4
to
71ca19a
Compare
No problem at all :) Just rebased to fix up the conflicts with the benchmark refactoring. |
I merged this into master locally and the tests pass so I will merge this. Thanks @returnString ! |
…regation (#12946) * Improve unparsing for ORDER BY with Aggregation functions (#38) * Improve UNION unparsing (#39) * Scalar functions in ORDER BY unparsing support (#41) * Improve unparsing for complex Window functions with Aggregation (#42) * WindowFunction order_by should respect `supports_nulls_first_in_sort` dialect setting (#43) * Fix plan_to_sql * Improve
Which issue does this PR close?
Closes #36.
What changes are included in this PR?
datafusion
crate now re-exports its versions ofarrow
andparquet
benchmarks
anddatafusion-examples
crates have been updated to make use of these exports in lieu of declaring their own dependencies on thearrow-rs
repoBonus subsection: not changed
datafusion-examples
still manually depends on thearrow-rs
repo for Flight support, as DataFusion doesn't use this currentlyAre there any user-facing changes?
This only provides users with an extra option for referencing
arrow
andparquet
, without breaking existing setups - we should probably add this to an installation/usage section of the user guide once that settles a bit though.