ARROW-17112: [Java] Fix a failure of TestArrowReaderWriter.testFileFooterSizeOverflow on s390x#13638
ARROW-17112: [Java] Fix a failure of TestArrowReaderWriter.testFileFooterSizeOverflow on s390x#13638kou merged 1 commit intoapache:masterfrom
Conversation
|
|
|
Benchmark runs are scheduled for baseline = d81d845 and contender = 8fd3067. 8fd3067 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
…oterSizeOverflow on s390x (apache#13638) `TestArrowReaderWriter.testFileFooterSizeOverflow` in arrow-vectors always causes a failure on s390x. This is because the test code stores footer length in platform native-endian buffer while footer length is stored as little-endian in a footer. This PR fixes only the test code. Authored-by: Kazuaki Ishizaki <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
TestArrowReaderWriter.testFileFooterSizeOverflowin arrow-vectors always causes a failure on s390x. This is because the test code stores footer length in platform native-endian buffer while footer length is stored as little-endian in a footer.This PR fixes only the test code.