diff options
author | George Hazan <ghazan@miranda.im> | 2018-07-06 12:21:46 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-07-06 12:21:46 +0300 |
commit | 0ab599895f91e7ff61d69e7d4de8dcf90d12bce1 (patch) | |
tree | 57800ccbe7c89ec3930222afeab5eb3364ecd900 /plugins/Dbx_mdbx | |
parent | e5e268f1267ac0a16303081f1532fa1597911887 (diff) |
compacting disabled for a while due to a bug in libmdbx
Diffstat (limited to 'plugins/Dbx_mdbx')
-rw-r--r-- | plugins/Dbx_mdbx/src/dbintf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dbx_mdbx/src/dbintf.cpp b/plugins/Dbx_mdbx/src/dbintf.cpp index 46890f5673..a293b2f84a 100644 --- a/plugins/Dbx_mdbx/src/dbintf.cpp +++ b/plugins/Dbx_mdbx/src/dbintf.cpp @@ -183,7 +183,7 @@ BOOL CDbxMDBX::Compact() }
mir_cslock lck(m_csDbAccess);
- int res = mdbx_env_copy2fd(m_env, pFile, MDBX_CP_COMPACT);
+ int res = mdbx_env_copy2fd(m_env, pFile, /*MDBX_CP_COMPACT*/0);
CloseHandle(pFile);
if (res == MDBX_SUCCESS) {
|