hang8929201 commented on code in PR #5028:
URL: https://github.com/apache/paimon/pull/5028#discussion_r1946038606
##########
paimon-common/src/main/java/org/apache/paimon/fileindex/bitmap/BitmapFileIndex.java:
##########
@@ -235,8 +271,18 @@ private RoaringBitmap32 readBitmap(Object bitmapId) {
if (offset < 0) {
return RoaringBitmap32.bitmapOf(-1 - offset);
} else {
- seekableInputStream.seek(bodyStart + offset);
+
seekableInputStream.seek(bitmapFileIndexMeta.getBodyStart() + offset);
Review Comment:
Accepted, thanks to JiaLiang for checking the code so carefully.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]