hailin0 commented on code in PR #3863:
URL:
https://github.com/apache/incubator-seatunnel/pull/3863#discussion_r1062080943
##########
seatunnel-api/src/main/java/org/apache/seatunnel/api/table/type/SeaTunnelRow.java:
##########
@@ -95,6 +96,12 @@ public SeaTunnelRow copy(int[] indexMapping) {
return newRow;
}
+ public SeaTunnelRow copy(List<Integer> indexMapping) {
+ return copy(indexMapping.stream()
+ .mapToInt(Integer::intValue)
+ .toArray());
+ }
+
Review Comment:
remove this method, move to caller location
--
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]