mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-11-23 21:36:07 +03:00
Skip dropping automatic indices
They cannot be dropped manually
This commit is contained in:
parent
7d2ac43d40
commit
a91150db41
1 changed files with 8 additions and 5 deletions
|
@ -27,11 +27,14 @@ public class DatabaseIndexUtil {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void dropIndexes(@NonNull SQLiteDatabase db) {
|
public static void dropIndexes(@NonNull SQLiteDatabase db) {
|
||||||
Cursor c = db.query("sqlite_master", new String[]{"name"}, "type=?", new String[]{"index"}, null, null, null);
|
try (Cursor c = db.query("sqlite_master", new String[]{"name", "sql"}, "type=?", new String[]{"index"}, null, null, null)) {
|
||||||
while (c.moveToNext()) {
|
while (c.moveToNext()) {
|
||||||
Log.v(TAG, "Deleting database index: DROP INDEX " + c.getString(0));
|
// Skip automatic indexes which we can't drop manually
|
||||||
db.execSQL("DROP INDEX " + c.getString(0));
|
if (c.getString(1) != null) {
|
||||||
|
Log.v(TAG, "Deleting database index: DROP INDEX " + c.getString(0));
|
||||||
|
db.execSQL("DROP INDEX " + c.getString(0));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
c.close();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue