pitrou opened a new issue, #48245: URL: https://github.com/apache/arrow/issues/48245
### Describe the enhancement requested The `BitReader::GetVlqInt` implementation currently tries to read first from the cached value before falling back to reading from the buffer. But this doesn't bring any benefit, since both code paths lead to the same processing step afterwards. So we can remove the code path that tries to read from the cached value. This will also make it easier to support big-endian platforms. ### Component(s) C++, Parquet -- 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]
