tustvold commented on a change in pull request #1039:
URL: https://github.com/apache/arrow-rs/pull/1039#discussion_r782156460
##########
File path: arrow/src/array/builder.rs
##########
@@ -2713,7 +2734,8 @@ mod tests {
let buffer = b.finish();
assert_eq!(1, buffer.len());
- let mut b = BooleanBufferBuilder::new(4);
+ // Overallocate capacity
+ let mut b = BooleanBufferBuilder::new(8);
Review comment:
Additional test for #1051
Edit: I think this is actually just the diff being unhelpful - this code
exists on master...
--
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]