tkalkirill commented on code in PR #4563: URL: https://github.com/apache/ignite-3/pull/4563#discussion_r1800656726
########## modules/core/src/main/java/org/apache/ignite/internal/hlc/HybridTimestamp.java: ########## @@ -121,6 +122,15 @@ public static long hybridTimestampToLong(@Nullable HybridTimestamp timestamp) { return timestamp == null ? NULL_HYBRID_TIMESTAMP : timestamp.time; } + /** + * Restores a timestamp converted to bytes using {@link #toBytes()}. Review Comment: Perhaps you wanted to indicate a different method? ########## modules/core/src/main/java/org/apache/ignite/internal/hlc/HybridTimestamp.java: ########## @@ -239,4 +249,11 @@ public HybridTimestamp roundUpToPhysicalTick() { return new HybridTimestamp(getPhysical() + 1, 0); } } + + /** + * Returns a byte array representing this timestamp. + */ Review Comment: ```suggestion /** Returns a byte array representing this timestamp. */ ``` -- 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-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org