pvary commented on code in PR #4364: URL: https://github.com/apache/iceberg/pull/4364#discussion_r1744988793
########## flink/v1.14/flink/src/main/java/org/apache/iceberg/flink/sink/BaseDeltaTaskWriter.java: ########## @@ -74,7 +80,7 @@ public void write(RowData row) throws IOException { case INSERT: case UPDATE_AFTER: if (upsert) { - writer.delete(row); + writer.deleteKey(deleteSchemaProjection.wrap(row)); Review Comment: There is no way to distinguish between why the equality delete was written. Especially as the equality delete could have been written by other engines. -- 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