Jefffrey commented on issue #9287:
URL: https://github.com/apache/arrow-rs/issues/9287#issuecomment-3808777831
Cleaner MRE:
```rust
use arrow_buffer::{BufferBuilder, MutableBuffer};
fn main() {
let buffer: Vec<i32> = vec![112];
let mutable = MutableBuffer::from(buffer);
let builder = BufferBuilder::<i128>::new_from_buffer(mutable);
let _ = BufferBuilder::<i128>::as_slice(&builder);
}
```
--
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]