From 5593246c4a92cdc77785815bb70b83408b7c3b80 Mon Sep 17 00:00:00 2001 From: Yeabsira Mekonnen Date: Fri, 6 Dec 2024 16:45:57 -0800 Subject: [PATCH] fixing tests --- db/db_impl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/db_impl.h b/db/db_impl.h index c1d645b4c..e101d99d1 100644 --- a/db/db_impl.h +++ b/db/db_impl.h @@ -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