tustvold commented on code in PR #2467:
URL: https://github.com/apache/arrow-rs/pull/2467#discussion_r948126409
##########
parquet/src/arrow/arrow_reader/selection.rs:
##########
@@ -398,11 +398,11 @@ mod tests {
let mut rand = thread_rng();
for _ in 0..100 {
let a_len = rand.gen_range(10..100);
- let a_bools: Vec<_> = (0..a_len).map(|x|
rand.gen_bool(0.2)).collect();
+ let a_bools: Vec<_> = (0..a_len).map(|_|
rand.gen_bool(0.2)).collect();
Review Comment:
It is because the unused suppression at the module level was removed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]