kbendick commented on a change in pull request #4364: URL: https://github.com/apache/iceberg/pull/4364#discussion_r832754926
########## File path: flink/v1.13/flink/src/main/java/org/apache/iceberg/flink/sink/BaseDeltaTaskWriter.java ########## @@ -103,5 +103,10 @@ public void write(RowData row) throws IOException { protected StructLike asStructLike(RowData data) { return wrapper.wrap(data); } + + @Override + protected StructLike asStructLikeKey(RowData data) { + throw new UnsupportedOperationException("Not implemented for Flink 1.13 during PR review"); Review comment: I'll do them in a follow up. These are not used in any of the 1.12 or 1.13 code paths, just necessary for compilation. So there's no commit that contains a solution that's half 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org