-
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
Upgrade arrow
parquet
and arrow-flight
to 24.0.0
#3691
Conversation
@@ -43,16 +43,16 @@ impl PyArrowConvert for ScalarValue { | |||
let array = factory.call1((args, typ))?; | |||
|
|||
// convert the pyarrow array to rust array using C data interface | |||
let array = array.extract::<ArrayData>()?; | |||
let scalar = ScalarValue::try_from_array(&array.into(), 0)?; | |||
let array = arrow::array::make_array(ArrayData::from_pyarrow(array)?); |
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.
Needed due to changes in apache/arrow-rs#2769
9c84637
to
6c05862
Compare
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 @alamb
Benchmark runs are scheduled for baseline = 010b352 and contender = 011e6f5. 011e6f5 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
Draft until24.0.0
is released Release Arrow24.0.0
(next release after23.0.0
) arrow-rs#2759Which issue does this PR close?
Closes #3689
Rationale for this change
Keep up with upstream changes
What changes are included in this PR?
Are there any user-facing changes?