This is an automated email from the ASF dual-hosted git repository. lzljs3620320 pushed a commit to branch release-1.3 in repository https://gitbox.apache.org/repos/asf/paimon.git
commit d495257d4c89be8aa526024e02cc43542c4d3215 Author: Yubin Li <[email protected]> AuthorDate: Wed Oct 29 19:37:04 2025 +0800 [core] Fix endian spec for BloomFilter index reader (#6493) --- .../org/apache/paimon/fileindex/bloomfilter/BloomFilterFileIndex.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paimon-common/src/main/java/org/apache/paimon/fileindex/bloomfilter/BloomFilterFileIndex.java b/paimon-common/src/main/java/org/apache/paimon/fileindex/bloomfilter/BloomFilterFileIndex.java index 3c9dcadba3..83d6b64b64 100644 --- a/paimon-common/src/main/java/org/apache/paimon/fileindex/bloomfilter/BloomFilterFileIndex.java +++ b/paimon-common/src/main/java/org/apache/paimon/fileindex/bloomfilter/BloomFilterFileIndex.java @@ -117,7 +117,7 @@ public class BloomFilterFileIndex implements FileIndexer { private final FastHash hashFunction; public Reader(DataType type, byte[] serializedBytes) { - // little endian + // big endian int numHashFunctions = ((serializedBytes[0] << 24) + (serializedBytes[1] << 16)
