We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3104474 commit 5452d08Copy full SHA for 5452d08
arrow/benches/json_writer.rs
@@ -35,7 +35,7 @@ fn do_bench(c: &mut Criterion, name: &str, batch: &RecordBatch) {
35
c.bench_function(name, |b| {
36
b.iter(|| {
37
let mut out = Vec::with_capacity(1024);
38
- LineDelimitedWriter::new(&mut out).write(&batch).unwrap();
+ LineDelimitedWriter::new(&mut out).write(batch).unwrap();
39
out
40
})
41
});
0 commit comments