Skip to content

Commit

Permalink
fixing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yabmek-msft committed Dec 7, 2024
1 parent 8e55ca9 commit 5593246
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db/db_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ class DBImpl : public DB {
// Set the suspend flag, which tells the database not to schedule background
// work until resume
// Waits for any currently executing BG work to complete before returning
virtual void SuspendCompaction();
void SuspendCompaction() override;
// Clears the suspend flag, so that the database can schedule background work
virtual void ResumeCompaction();
void ResumeCompaction() override;

// Extra methods (for testing) that are not in the public DB interface

Expand Down

0 comments on commit 5593246

Please sign in to comment.