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:
Taro L. Saito 2025-07-19 11:13:54 -07:00
parent 61e8ef98c6
commit 7d77d79be4
4 changed files with 3 additions and 5 deletions

View File

@ -30,8 +30,6 @@ jobs:
- '.scalafmt.conf'
- 'sbt'
- 'sbt.bat'
- 'Makefile*'
- '**/VERSION'
code_format:
name: code format
needs: changes

View File

@ -1,2 +1,2 @@
SNAPPY_VERSION=1.2.2
SNAPPY_VERSION=1.1.10
BITSHUFFLE_VERSION=0.3.4

View File

@ -180,8 +180,8 @@ public class SnappyOutputStreamTest
if (ByteOrder.nativeOrder() == ByteOrder.BIG_ENDIAN)
assertEquals(90992, expectedCompressedData.length);
else if(OSInfo.getArchName() == "aarch64")
// Arm has a better compression ratio (improved with Snappy 1.2.2)
assertEquals(90277, expectedCompressedData.length);
// Arm has a better compression ratio
assertEquals(91051, expectedCompressedData.length);
else
assertEquals(91080, expectedCompressedData.length);
// The chunk size should not affect the size of the compressed output: