diff options
author | George Hazan <george.hazan@gmail.com> | 2023-10-04 11:18:13 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-10-04 11:18:13 +0300 |
commit | cb965e0431af6f3d46d518b9d89fc38aa349f349 (patch) | |
tree | 432b563f85c1e8c15500c8a4d6744a8b06cff2c9 /plugins/Dbx_sqlite | |
parent | aad7cea75cbd6394cd9c61d33997b77e3e4e6424 (diff) |
Dbx_Sqlite: conversion takes too much time, compaction removed
Diffstat (limited to 'plugins/Dbx_sqlite')
-rw-r--r-- | plugins/Dbx_sqlite/src/dbsettings.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/Dbx_sqlite/src/dbsettings.cpp b/plugins/Dbx_sqlite/src/dbsettings.cpp index dfc3bddf85..5a986da74d 100644 --- a/plugins/Dbx_sqlite/src/dbsettings.cpp +++ b/plugins/Dbx_sqlite/src/dbsettings.cpp @@ -121,9 +121,6 @@ void CDbxSQLite::InitSettings() rc = sqlite3_exec(m_db, "ALTER TABLE tmp RENAME TO events_srt;", 0, 0, 0);
logError(rc, __FILE__, __LINE__);
- rc = sqlite3_exec(m_db, "VACUUM;", 0, 0, 0);
- logError(rc, __FILE__, __LINE__);
-
dbv.bVal = 3;
}
|