emilk commented on code in PR #10552:
URL: https://github.com/apache/arrow-rs/pull/10552#discussion_r3715620603


##########
arrow/benches/builder.rs:
##########
@@ -35,7 +35,7 @@ const BATCH_SIZE: usize = 8 << 10;
 const NUM_BATCHES: usize = 64;
 
 fn bench_primitive(c: &mut Criterion) {
-    let data: [i64; BATCH_SIZE] = [100; BATCH_SIZE];
+    let data = vec![100i64; BATCH_SIZE];

Review Comment:
   lets revert this since it may affect benchmark perf



-- 
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]

Reply via email to