This is an automated email from the ASF dual-hosted git repository.

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new 86e2e2f698 [core] Fix endian spec for BloomFilter index reader (#6493)
86e2e2f698 is described below

commit 86e2e2f698663b26853fec1ae609a0c5780c586d
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)

Reply via email to