Fix read_bitmap from deleted objects with the new store

This commit is contained in:
Vitaliy Filippov
2026-03-31 01:59:53 +03:00
parent b30635b932
commit e6881ad1d5
+4
View File
@@ -462,6 +462,10 @@ int blockstore_impl_t::read_bitmap(object_id oid, uint64_t target_version, void
{
if (target_version >= wr->version)
{
if (wr->type() == BS_HEAP_DELETE)
{
return false;
}
found = true;
if (result_version)
{