mirror of
https://github.com/xerial/snappy-java.git
synced 2025-07-20 20:44:28 +02:00
Revert unintended changes to keep PR focused on sonaRelease migration
- Revert SNAPPY_VERSION upgrade (1.2.2 -> 1.1.10) - Revert SnappyOutputStreamTest compression ratio change - Revert native library binary update - Revert CI workflow trigger additions These changes should be in separate PRs, not part of the publishing migration.
This commit is contained in:
parent
61e8ef98c6
commit
7d77d79be4
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@ -30,8 +30,6 @@ jobs:
|
|||||||
- '.scalafmt.conf'
|
- '.scalafmt.conf'
|
||||||
- 'sbt'
|
- 'sbt'
|
||||||
- 'sbt.bat'
|
- 'sbt.bat'
|
||||||
- 'Makefile*'
|
|
||||||
- '**/VERSION'
|
|
||||||
code_format:
|
code_format:
|
||||||
name: code format
|
name: code format
|
||||||
needs: changes
|
needs: changes
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
SNAPPY_VERSION=1.2.2
|
SNAPPY_VERSION=1.1.10
|
||||||
BITSHUFFLE_VERSION=0.3.4
|
BITSHUFFLE_VERSION=0.3.4
|
||||||
|
Binary file not shown.
@ -180,8 +180,8 @@ public class SnappyOutputStreamTest
|
|||||||
if (ByteOrder.nativeOrder() == ByteOrder.BIG_ENDIAN)
|
if (ByteOrder.nativeOrder() == ByteOrder.BIG_ENDIAN)
|
||||||
assertEquals(90992, expectedCompressedData.length);
|
assertEquals(90992, expectedCompressedData.length);
|
||||||
else if(OSInfo.getArchName() == "aarch64")
|
else if(OSInfo.getArchName() == "aarch64")
|
||||||
// Arm has a better compression ratio (improved with Snappy 1.2.2)
|
// Arm has a better compression ratio
|
||||||
assertEquals(90277, expectedCompressedData.length);
|
assertEquals(91051, expectedCompressedData.length);
|
||||||
else
|
else
|
||||||
assertEquals(91080, expectedCompressedData.length);
|
assertEquals(91080, expectedCompressedData.length);
|
||||||
// The chunk size should not affect the size of the compressed output:
|
// The chunk size should not affect the size of the compressed output:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user