shishkovilja commented on code in PR #12404:
URL: https://github.com/apache/ignite/pull/12404#discussion_r2420553861
##########
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.
Review Comment:
```suggestion
* @param val New entry value.
```
--
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]