Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -525,8 +525,12 @@ private void removeCheckpointFile(long timestamp, CheckpointType type)

public void reclaimVisibility(long fileId, int rgId, long timestamp) throws RetinaException
{
RGVisibility rgVisibility = checkRGVisibility(fileId, rgId);
rgVisibility.getVisibilityBitmap(timestamp);
String retinaKey = fileId + "_" + rgId;
RGVisibility rgVisibility = this.rgVisibilityMap.remove(retinaKey);
if (rgVisibility != null)
{
rgVisibility.close();
}
}

public void deleteRecord(long fileId, int rgId, int rgRowOffset, long timestamp) throws RetinaException
Expand Down