aarashy opened a new issue, #14791: URL: https://github.com/apache/arrow/issues/14791
### Describe the bug, including details regarding any error messages, version, and platform. Hello, I filed an issue with `arrow-rs` because panics were being triggered in their IPC byte parsing functions. https://github.com/apache/arrow-rs/issues/3215#issuecomment-1331649397 The input IPC bytes were the result of `tableToIPC`. According to the info I've gathered in my other issue, it seems like `tableToIPC` is not correctly padding and instead incorrectly truncating bits in cases where the length of a record batch is not divisible by 8. For example, the Null Bit Buffer encodes whether each row is null or not using 1 bit. My record batch has length 518, which is not divisible by 8 (64.75). Some parsing/validation inside arrow-rs is therefore expecting the null bit buffer to be 65 bytes long, but it's only 64 bytes long. ### Component(s) Format, Integration, JavaScript -- 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]
