-
Notifications
You must be signed in to change notification settings - Fork 875
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
Update arrow-flight subcrates (#3044) #3052
Conversation
f02d62c
to
ba7dea8
Compare
Marking as draft pending #3053 |
f16f2af
to
21895c3
Compare
- arrow-csv/** | ||
- arrow-json/** |
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.
Added by mistake?
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.
At the time arrow-flight had a transitive dependency on them via arrow
@@ -122,18 +122,18 @@ pub trait ProstAnyExt { | |||
/// | |||
/// * `Ok(None)` when message type mismatch | |||
/// * `Err` when parse failed | |||
fn unpack<M: ProstMessageExt>(&self) -> ArrowResult<Option<M>>; | |||
fn unpack<M: ProstMessageExt>(&self) -> Result<Option<M>, ArrowError>; |
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 saw you defined ArrowResult
at arrow-flight/src/lib.rs
, aren't we going to use it in arrow-flight
crate?
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.
In general I've been trying to avoid aliasing Result, it was necessary in lib.rs due to name collisions
Benchmark runs are scheduled for baseline = 8d364fe and contender = 132152c. 132152c is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
Which issue does this PR close?
Part of #3044
Rationale for this change
Updates arrow-flight to depend only on sub crates
What changes are included in this PR?
Are there any user-facing changes?