shishkovilja commented on code in PR #12404:
URL: https://github.com/apache/ignite/pull/12404#discussion_r2420552858
##########
modules/calcite/src/main/java/org/apache/ignite/internal/processors/query/calcite/message/QueryTxEntry.java:
##########
@@ -77,21 +80,49 @@ public int cacheId() {
return cacheId;
}
+ /**
+ * @param cacheId Cache id.
+ */
+ public void cacheId(int cacheId) {
+ this.cacheId = cacheId;
+ }
+
/** @return Entry key. */
public KeyCacheObject key() {
return key;
}
+ /**
+ * @param key Key.
+ */
+ public void key(KeyCacheObject key) {
+ this.key = key;
+ }
+
/** @return Entry value. */
public CacheObject value() {
return val;
}
+ /**
+ * @param val Value.
+ */
+ public void value(CacheObject val) {
+ this.val = val;
+ }
+
/** @return Entry version. */
public GridCacheVersion version() {
return ver;
}
+ /**
+ * @param ver Version.
Review Comment:
```suggestion
* @param ver New entry 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]