We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Its that time again: Rust 1.53 was released with improved (aka more stringent) clippy resulting in some new clippy CI failures:
Example run: https://github.com/apache/arrow-rs/runs/2864727407
Checking tracing-futures v0.2.5 Checking futures-executor v0.3.15 Checking arrow v5.0.0-SNAPSHOT (/__w/arrow-rs/arrow-rs/arrow) error: usage of `FromIterator::from_iter` --> arrow/src/array/array_boolean.rs:150:9 | 150 | BooleanArray::from_iter(data.iter()) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `.collect()` instead of `::from_iter()`: `data.iter().collect::<BooleanArray<_>>()` | = note: `-D clippy::from-iter-instead-of-collect` implied by `-D warnings` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#from_iter_instead_of_collect
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the bug
Its that time again: Rust 1.53 was released with improved (aka more stringent) clippy resulting in some new clippy CI failures:
Example run:
https://github.com/apache/arrow-rs/runs/2864727407
The text was updated successfully, but these errors were encountered: