Skip to content

Commit b0e18f9

Browse files
author
Brian Chen
authored
Revert removal of index_value (#2961)
1 parent b7915e3 commit b0e18f9

File tree

1 file changed

+1
-1
lines changed
  • firebase-firestore/src/main/java/com/google/firebase/firestore/local

1 file changed

+1
-1
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/local/SQLiteSchema.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ private void createFieldIndex() {
367367
+ "index_value BLOB, " // field value pairs
368368
+ "uid TEXT, " // user id or null if there are no pending mutations
369369
+ "document_id TEXT, "
370-
+ "PRIMARY KEY (index_id, uid, document_id))");
370+
+ "PRIMARY KEY (index_id, index_value, uid, document_id))");
371371
});
372372
}
373373

0 commit comments

Comments
 (0)