Skip to content

Commit 81b6e16

Browse files
committed
Add missing function to MemoryIndexManager
1 parent 28ac1cb commit 81b6e16

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,11 @@ public FieldIndex.IndexOffset getLeastRecentIndexOffset(Target target) {
108108
return FieldIndex.IndexOffset.NONE;
109109
}
110110

111+
@Override
112+
public FieldIndex.IndexOffset getLeastRecentIndexOffset(Collection<FieldIndex> fieldIndexes) {
113+
return FieldIndex.IndexOffset.NONE;
114+
}
115+
111116
@Override
112117
public void updateIndexEntries(ImmutableSortedMap<DocumentKey, Document> documents) {
113118
// Field indices are not supported with memory persistence.

0 commit comments

Comments
 (0)