-
Notifications
You must be signed in to change notification settings - Fork 945
Add ReadTime to MutableDocument #5925
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Changeset File Check ✅
|
Size Report 1Affected Products
Test Logs |
d5887c6
to
8367203
Compare
Size Analysis Report 1This report is too large (403,658 characters) to be displayed here in a GitHub comment. Please use the below link to see the full report on Google Cloud Storage.Test Logs |
@wu-hui Do you have time to look at this? |
@@ -331,16 +334,15 @@ class IndexedDbRemoteDocumentCacheImpl implements IndexedDbRemoteDocumentCache { | |||
} | |||
|
|||
/** | |||
* Decodes `remoteDoc` and returns the document (or null, if the document | |||
* corresponds to the format used for sentinel deletes). | |||
* Decodes `remoteDoc` and returns the document (or an invalid document if |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dbRemoteDoc
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
/** | ||
* Represents a document change to be applied to remote document cache. | ||
*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be deleted as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, thanks for catching
Indexing needs a readTime on MutableDocument. This PR adds this and cleans up a bunch of callsites to use the new read time.