-
Notifications
You must be signed in to change notification settings - Fork 1.5k
#2109 schema infer max #2159
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
#2109 schema infer max #2159
Conversation
same as https://github.com/apache/arrow-datafusion/pull/1885/files which already in master
@@ -26,7 +26,7 @@ pub use env_logger; | |||
pub fn batches_to_vec(batches: &[RecordBatch]) -> Vec<Option<i32>> { | |||
batches | |||
.iter() | |||
.map(|batch| { | |||
.flat_map(|batch| { |
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.
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.
Thanks @jychen7!
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.
Thanks @jychen7
Looks like there are some other clippy errors left on the maint branch -- if you want we can merge this PR in as is and then we can fix the clippy errors on the maint branch as a follow on PR |
the clippy error impact quite a few files, would be better we resolve in new PR |
I agree -- merged this one in |
|
Which issue does this PR close?
patch v7.x with #2109
was merged to
master
at #2139Rationale for this change
What changes are included in this PR?
Are there any user-facing changes?