AMashenkov commented on code in PR #4882: URL: https://github.com/apache/ignite-3/pull/4882#discussion_r1881912376
########## modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/exec/rel/ModifyNodeExecutionTest.java: ########## @@ -434,6 +439,20 @@ void mergePassesCorrectRowsToInsert(int colCount, boolean updateOnly, Object[] d } } + private static RowWrapper concatRow(RowFactory<RowWrapper> rowFactory, RowWrapper... rows) { + RowHandler<RowWrapper> handler = rowFactory.handler(); + RowBuilder<RowWrapper> builder = rowFactory.rowBuilder(); + + for (RowWrapper row : rows) { + int cols = handler.columnCount(row); + for (int i = 0; i < cols; i++) { + builder.addField(handler.get(i, row)); + } + } + + return builder.buildAndReset(); Review Comment: fixed -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org