Vishwanatha-HD commented on code in PR #48195:
URL: https://github.com/apache/arrow/pull/48195#discussion_r2556243219
##########
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
Review Comment:
@kou.. I modified the s390x code paths to as mentioned above i.e.
max_size = bytes_left();
data = buffer_ + (max_bytes_ - max_size);
Unfortunately, things didnt work.. Itseems like we are modfifying the
max_size and data in a similar way as on LE systems, but things are different
on s390x.. Hence, I am unable to make this change.. Thanks..
--
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]