Truncate WAL

This commit is contained in:
M66B 2022-07-20 16:06:23 +02:00
parent 8162d8e0b3
commit 86bf62a758
1 changed files with 1 additions and 1 deletions

View File

@ -2433,7 +2433,7 @@ public abstract class DB extends RoomDatabase {
long start = new Date().getTime();
StringBuilder sb = new StringBuilder();
SupportSQLiteDatabase sdb = db.getOpenHelper().getWritableDatabase();
String mode = (BuildConfig.DEBUG || !BuildConfig.PLAY_STORE_RELEASE ? "RESTART" : "PASSIVE");
String mode = (true ? "RESTART" : "PASSIVE");
try (Cursor cursor = sdb.query("PRAGMA wal_checkpoint(" + mode + ");")) {
if (cursor.moveToNext()) {
for (int i = 0; i < cursor.getColumnCount(); i++) {