Dandandan commented on code in PR #9297:
URL: https://github.com/apache/arrow-rs/pull/9297#discussion_r2779479110
##########
arrow-buffer/src/buffer/immutable.rs:
##########
@@ -343,7 +343,17 @@ impl Buffer {
return self.slice_with_length(offset / 8, bit_util::ceil(len, 8));
}
- BooleanBuffer::from_bits(self.as_slice(), offset, len).into_inner()
+ let chunks = self.bit_chunks(offset, len);
Review Comment:
This is required to make it work/tests pass as `into_inner` throws away the
bit offset and length.
--
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]