Removed method from public interface

This commit is contained in:
emeric
2025-07-09 07:54:54 +02:00
parent 764c92698c
commit ef42bba0b0
4 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -360,7 +360,7 @@ namespace lms::db
// We manually take a lock here since vacuum cannot be inside a transaction
{
std::unique_lock lock{ static_cast<Db&>(_db).getMutex() };
_db.executeSql("VACUUM");
static_cast<Db&>(_db).executeSql("VACUUM");
}
LMS_LOG(DB, INFO, "Vacuum complete!");