Skip to content

Commit 24e13b4

Browse files
committed
[dbsp] Fix unused variable warning in star_join benchmark.
Signed-off-by: Ben Pfaff <blp@feldera.com>
1 parent ea09a66 commit 24e13b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/dbsp/benches/star_join.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ fn run_star_join(
189189
.unwrap();
190190

191191
let start = Instant::now();
192-
for (i, mut batches) in data.into_iter().enumerate() {
192+
for mut batches in data {
193193
// println!("step: {}", i);
194194
h1.append(&mut batches[0]);
195195
h2.append(&mut batches[1]);

0 commit comments

Comments
 (0)