xtern commented on code in PR #2397:
URL: https://github.com/apache/ignite-3/pull/2397#discussion_r1286940525
##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/exec/UpdatableTableImpl.java:
##########
@@ -281,7 +281,7 @@ private <RowT> BinaryRowEx convertRow(RowT row,
ExecutionContext<RowT> ectx, boo
continue;
}
- Object value = hnd.get(colDesc.logicalIndex(), row);
+ Object value = hnd.get(keyOnly ? colDesc.physicalIndex() :
colDesc.logicalIndex(), row);
Review Comment:
Thanks, removed first loop.
--
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]