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


##########
modules/storage-page-memory/src/main/java/org/apache/ignite/internal/storage/pagememory/mv/HybridTimestamps.java:
##########
@@ -31,23 +31,22 @@
  * Code to work with {@link HybridTimestamp}s.
  */
 public class HybridTimestamps {
-    /**
-     * Physical time component to store for {@code null} hybrid timestamp 
values.
-     */
+    /** Physical time component to store for {@code null} hybrid timestamp 
values. */
     private static final long NULL_PHYSICAL_TIME = 0L;
 
-    /**
-     * Logical time component to store for {@code null} hybrid timestamp 
values.
-     */
+    /** Logical time component to store for {@code null} hybrid timestamp 
values. */
     private static final int NULL_LOGICAL_TIME = 0;
 
+    /** Payload size in bytes. */
+    public static final int SIZE_IN_BYTES = Long.BYTES + Integer.BYTES;

Review Comment:
   Didn't see it, thanks!



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