You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2022/12/21 10:59:05 UTC

[GitHub] [ignite] NSAmelchev commented on a diff in pull request #10430: IGNITE-18198 Implement snapshots of caches with disk page compression.

NSAmelchev commented on code in PR #10430:
URL: https://github.com/apache/ignite/pull/10430#discussion_r1054257562


##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/snapshot/SnapshotMetadata.java:
##########
@@ -191,6 +215,14 @@ private void writeObject(java.io.ObjectOutputStream s)
             for (Integer partId : e.getValue())
                 s.writeInt(partId);
         }
+
+        if (hasComprGrps) {
+            s.writeInt(comprGrpIds.size());
+
+            for (int grpId : comprGrpIds)
+                s.writeInt(grpId);
+

Review Comment:
   redundant line break



-- 
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: notifications-unsubscribe@ignite.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org