We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16c8053 commit 207c71bCopy full SHA for 207c71b
firebase-firestore/src/main/java/com/google/firebase/firestore/local/SQLiteIndexManager.java
@@ -96,6 +96,8 @@ public void addFieldIndex(FieldIndex index) {
96
db.query("SELECT MAX(index_id) FROM index_configuration")
97
.firstValue(input -> input.isNull(0) ? 0 : input.getInt(0));
98
99
+ // TODO(indexing): Properly dedupe indices to avoid duplicate index entries (by comparing
100
+ // collection_group+index_proto)
101
db.execute(
102
"INSERT OR IGNORE INTO index_configuration ("
103
+ "index_id, "
0 commit comments