Jefffrey commented on issue #9286:
URL: https://github.com/apache/arrow-rs/issues/9286#issuecomment-3808678010

   Minimal example for easier debugging
   
   ```rust
   use arrow_buffer::BufferBuilder;
   
   fn main() {
       let mut buffer = BufferBuilder::<i64>::from(vec![40, -63, 90]);
       buffer.truncate(151);
       buffer.advance(219);
       let _ = buffer.as_slice_mut();
   }
   ```


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