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 28ac1cb commit 81b6e16Copy full SHA for 81b6e16
firebase-firestore/src/main/java/com/google/firebase/firestore/local/MemoryIndexManager.java
@@ -108,6 +108,11 @@ public FieldIndex.IndexOffset getLeastRecentIndexOffset(Target target) {
108
return FieldIndex.IndexOffset.NONE;
109
}
110
111
+ @Override
112
+ public FieldIndex.IndexOffset getLeastRecentIndexOffset(Collection<FieldIndex> fieldIndexes) {
113
+ return FieldIndex.IndexOffset.NONE;
114
+ }
115
+
116
@Override
117
public void updateIndexEntries(ImmutableSortedMap<DocumentKey, Document> documents) {
118
// Field indices are not supported with memory persistence.
0 commit comments