-
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
Backport update to arrow 53.1.0 on branch-42 #12977
Conversation
@@ -770,7 +770,7 @@ mod tests { | |||
"c7: Int64", | |||
"c8: Int64", | |||
"c9: Int64", | |||
"c10: Int64", | |||
"c10: Utf8", |
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.
Changed due to arrow changes: https://github.com/apache/datafusion/pull/12724/files#r1785141290
@@ -69,6 +69,7 @@ use parquet::arrow::arrow_writer::{ | |||
use parquet::arrow::{ | |||
arrow_to_parquet_schema, parquet_to_arrow_schema, AsyncArrowWriter, | |||
}; | |||
#[allow(deprecated)] |
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.
main has been updated to use the new APIs, but for the maintenance release let's just use the existing code
@@ -87,13 +87,14 @@ mod test { | |||
|
|||
wasm_bindgen_test::wasm_bindgen_test_configure!(run_in_browser); | |||
|
|||
#[wasm_bindgen_test] | |||
#[cfg_attr(target_arch = "wasm32", wasm_bindgen_test)] |
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.
these changes are from #12844, see rationale here
Merging this in to get clean CI runs for other backports and all the code has previously been approved / merged |
Which issue does this PR close?
Part of #12813
Rationale for this change
Clippy is failing on branch-42 after the arrow 53.1.0 upgrade. This was fixed in #12724 on main, but that also includes several other fixes
What changes are included in this PR?
53.1.0
/ fix clippy #12724 to get CI passingAre these changes tested?
Are there any user-facing changes?