tkalkirill commented on code in PR #4379:
URL: https://github.com/apache/ignite-3/pull/4379#discussion_r1756758785


##########
modules/page-memory/src/main/java/org/apache/ignite/internal/pagememory/persistence/checkpoint/CheckpointDirtyPages.java:
##########
@@ -44,23 +42,24 @@ class CheckpointDirtyPages {
     /** Empty checkpoint dirty pages. */
     static final CheckpointDirtyPages EMPTY = new 
CheckpointDirtyPages(List.of());
 
-    /** Dirty pages of data regions, with sorted page IDs by {@link 
#DIRTY_PAGE_COMPARATOR} and unsorted partition IDs. */
-    private final List<DataRegionDirtyPages<FullPageId[]>> dirtyPages;
+    /** Dirty pages and partitions of data regions, with sorted dirty page IDs 
by {@link #DIRTY_PAGE_COMPARATOR}. */
+    private final List<DirtyPagesAndPartitions> dirtyPagesAndPartitions;
 
     /** Total number of dirty page IDs. */
     private final int dirtyPagesCount;
 
     /**
      * Constructor.
      *
-     * @param dirtyPages Dirty pages of data regions, with sorted page IDs by 
{@link #DIRTY_PAGE_COMPARATOR} and unsorted partition IDs.
+     * @param dirtyPagesAndPartitions Dirty pages and partitions of data 
regions, with sorted dirty page IDs by

Review Comment:
   Adds



-- 
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]

Reply via email to