stevenzwu commented on code in PR #13310: URL: https://github.com/apache/iceberg/pull/13310#discussion_r2205375723
########## spark/v4.0/spark/src/main/java/org/apache/iceberg/spark/source/SparkPositionDeltaWrite.java: ########## @@ -736,7 +766,14 @@ public void update(InternalRow meta, InternalRow id, InternalRow row) throws IOE @Override public void insert(InternalRow row) throws IOException { - delegate.insert(row, dataSpec, null); + reinsert(null, row); + } + + @Override + public void reinsert(InternalRow meta, InternalRow row) throws IOException { + InternalRow rowLineage = rowLineageFromMetadata.apply(meta); Review Comment: nit: The `rowLineage == null ? : ` logic is duplicated in multiple places. Can we move it inside the `ExtractRowLineage` class. Also maybe the class can be named as `RowLineageDecorator`. -- 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