Skip to content

Commit

Permalink
Merge e6c2edb into 12789bd
Browse files Browse the repository at this point in the history
  • Loading branch information
zverevgeny authored Dec 22, 2024
2 parents 12789bd + e6c2edb commit 687a9ae
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@
namespace NKikimr::NOlap {

bool TPlanCompactionInfo::Finish() {
AFL_VERIFY(Count);
return --Count == 0;
if (Count > 0) {
return --Count == 0;
} else {
AFL_VERIFY(false);
return false;
}
}

} // namespace NKikimr::NOlap

0 comments on commit 687a9ae

Please sign in to comment.