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 f53340c commit a89115fCopy full SHA for a89115f
Firestore/core/src/util/testing_hooks.h
@@ -44,7 +44,13 @@ class TestingHooks final {
44
* registered with `OnExistenceFilterMismatch()`.
45
*/
46
struct ExistenceFilterMismatchInfo {
47
+ /** The number of documents that matched the query in the local cache. */
48
int local_cache_count = -1;
49
+
50
+ /**
51
+ * The number of documents that matched the query on the server, as
52
+ * specified in the `ExistenceFilter` message's `count` field.
53
+ */
54
int existence_filter_count = -1;
55
};
56
0 commit comments