Skip to content

Commit

Permalink
fix: wrong delete gen level
Browse files Browse the repository at this point in the history
  • Loading branch information
crwen authored and ethe committed Dec 13, 2024
1 parent f027e42 commit e3e5349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compaction/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ where
level: (level + 1) as u8,
gen: scope.gen,
});
delete_gens.push((scope.gen, level));
delete_gens.push((scope.gen, level + 1));
}
level += 1;
}
Expand Down

0 comments on commit e3e5349

Please sign in to comment.