tkalkirill commented on code in PR #1012:
URL: https://github.com/apache/ignite-3/pull/1012#discussion_r946681336
##########
modules/storage-page-memory/src/main/java/org/apache/ignite/internal/storage/pagememory/mv/RowVersion.java:
##########
@@ -142,38 +137,45 @@ boolean isCommitted() {
return timestamp != null;
}
+ /** {@inheritDoc} */
@Override
public final void link(long link) {
this.link = link;
}
+ /** {@inheritDoc} */
@Override
public final long link() {
return link;
}
+ /** {@inheritDoc} */
@Override
public final int partition() {
return partitionId;
}
+ /** {@inheritDoc} */
@Override
public int size() {
assert value != null;
return TIMESTAMP_STORE_SIZE_BYTES + NEXT_LINK_STORE_SIZE_BYTES +
VALUE_SIZE_STORE_SIZE_BYTES + value.limit();
}
+ /** {@inheritDoc} */
@Override
public int headerSize() {
return TIMESTAMP_STORE_SIZE_BYTES + NEXT_LINK_STORE_SIZE_BYTES +
VALUE_SIZE_STORE_SIZE_BYTES;
}
+ /** {@inheritDoc} */
@Override
public IoVersions<? extends AbstractDataPageIo> ioVersions() {
Review Comment:
Fix it
--
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]