Vishwanatha-HD commented on code in PR #48195:
URL: https://github.com/apache/arrow/pull/48195#discussion_r2556096368
##########
cpp/src/arrow/util/bit_stream_utils_internal.h:
##########
@@ -381,6 +384,17 @@ inline bool BitReader::GetVlqInt(Int* v) {
max_size = bytes_left();
data = buffer_ + (max_bytes_ - max_size);
}
+#else
+ // For VLQ reading, always read directly from buffer to avoid endianness
issues
+ // with buffered_values_ on big-endian systems like s390x
+ // Calculate current position in buffer accounting for bit offset
Review Comment:
>
Addressed this change.. Pushed a new change-set
--
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]