Skip to content

Commit

Permalink
fix: clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
v0y4g3r committed Feb 8, 2024
1 parent 070c7ab commit 780898b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mito2/src/memtable/merge_tree/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1039,7 +1039,7 @@ mod tests {
};
let mut iter = parts.iter(pk_weights).unwrap();
let mut res = Vec::with_capacity(expected_values.len());
while let Some(b) = iter.next() {
for b in iter {
let batch = b.unwrap().as_record_batch();
let values = batch
.column_by_name("v1")
Expand Down

0 comments on commit 780898b

Please sign in to comment.