tkalkirill commented on code in PR #920:
URL: https://github.com/apache/ignite-3/pull/920#discussion_r921243949
##########
modules/page-memory/src/main/java/org/apache/ignite/internal/pagememory/persistence/PersistentPageMemory.java:
##########
@@ -1549,18 +1573,14 @@ public long refreshOutdatedPage(int grpId, long pageId,
boolean rmv) {
loadedPages.remove(grpId, effectivePageId(pageId));
}
- CheckpointPages cpPages = checkpointPages;
+ CheckpointPages checkpointPages = this.checkpointPages;
- if (cpPages != null) {
- cpPages.markAsSaved(new FullPageId(pageId, grpId));
+ if (checkpointPages != null) {
+ checkpointPages.markAsSaved(new FullPageId(pageId, grpId));
Review Comment:
No need to modify removed this code.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]