stevenzwu commented on code in PR #13310: URL: https://github.com/apache/iceberg/pull/13310#discussion_r2198373177
########## spark/v4.0/spark/src/main/java/org/apache/iceberg/spark/source/SparkPositionDeltaWrite.java: ########## @@ -426,17 +428,35 @@ public DeltaWriter<InternalRow> createWriter(int partitionId, long taskId) { .writeProperties(writeProperties) .build(); + Function<InternalRow, InternalRow> rowLineageProjector = + context.dataSchema() != null + && context.dataSchema().findField(MetadataColumns.ROW_ID.fieldId()) != null + ? new ProjectRowLineageFromMetadata() Review Comment: ok. looks like `context.dataSchema()` can be null. when could it be null? if it is null, row lineage is not carried over. doesn't it violate the spec? -- 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