Uh oh!
There was an error while loading. Please reload this page.
ARROW-9631: [Rust] Make arrow not depend on flight - #7894
Conversation
andygrove
commented
Aug 4, 2020
@vertexclique Please rebase now that the other related PR is merged. |
196dcfc to
7e317b6Comparevertexclique
commented
Aug 4, 2020
macos error is odd. since serde_derive is there: https://github.com/apache/arrow/pull/7894/files#diff-c9a039d0f56d7ad3611f9278a44d9056R40 |
andygrove
commented
Aug 4, 2020
We can ignore the mac failure. It's a known issue. |
vertexclique
commented
Aug 5, 2020
I don't see these errors when I ran all these tests locally. I am unsure why this is happening. @andygrove |
andygrove
commented
Aug 5, 2020
@vertexclique I pulled your branch and was able to reproduce the issue by trying to run the datafusion example. The issue is that you changed the datafusion crate to use parquet with no features, so that removed the arrow dependency. Try this instead in datafusion/Cargo.toml: |
vertexclique
commented
Aug 6, 2020
Yes, that's true, enabled it. Resolved. |
andygrove
commented
Aug 6, 2020
@vertexclique The release scripts now need updating. I spent some time trying to fix them myself this morning but I am out of time for now. To reproduce locally you can run: If you look at Then in This is showing the expected diff after changing version numbers, but it no longer matches because of the feature flags. |
vertexclique
commented
Aug 7, 2020
@andygrove Seems like done. |
andygrove
commented
Aug 7, 2020
Thanks @vertexclique ... your regex skills are better than mine. One last thing ... we probably shouldn't have flight protocol changes as part of this PR. Could you revert those? I'm confused why these are still appearing and this is something I am going to look into next week. |
vertexclique
commented
Aug 8, 2020
@andygrove reverted them. |
Hey people, is it possible to merge this? This is currently blocking us together with #7873 |
reexports flight from arrow if enabled. removes unnecessary datafusion deps. now by default arrow uses no features. features should be handpicked by the user. Closesapache#7894 from vertexclique/vcq/ARROW-9631-make-arrow-not-depend-on-flight Authored-by: Mahmut Bulut <vertexclique@gmail.com> Signed-off-by: Andy Grove <andygrove73@gmail.com>
reexports flight from arrow if enabled.
removes unnecessary datafusion deps.
now by default arrow uses no features. features should be handpicked by the user.