chesnokoff commented on code in PR #12960:
URL: https://github.com/apache/ignite/pull/12960#discussion_r3038111852
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/performancestatistics/OperationType.java:
##########
@@ -295,7 +297,7 @@ public static int checkpointRecordSize() {
/** @return Version record size. */
public static int versionRecordSize() {
- return Short.BYTES;
+ return Short.BYTES + 1 + Integer.BYTES + VER_STR.length();
Review Comment:
1 byte for caching
Integer.BYTES bytes for size
VER_STR.length() for version
--
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]