ptupitsyn commented on a change in pull request #343:
URL: https://github.com/apache/ignite-3/pull/343#discussion_r710401087
##########
File path:
modules/table/src/main/java/org/apache/ignite/internal/table/MutableRowTupleAdapter.java
##########
@@ -223,15 +232,37 @@ public MutableRowTupleAdapter(@NotNull Row row) {
/** {@inheritDoc} */
@Override public Tuple set(@NotNull String columnName, Object value) {
+ unmarshallRow();
+
+ tuple.set(columnName, value);
+
+ return this;
+ }
+
+ /**
+ * Converts immutable row to mutable tuple.
+ */
+ private void unmarshallRow() {
Review comment:
`marshal` and `unmarshal` are spelled with one `l` at the end, see
https://en.wikipedia.org/wiki/Marshalling_(computer_science).
--
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]