amogh-jahagirdar commented on code in PR #13310: URL: https://github.com/apache/iceberg/pull/13310#discussion_r2198395943
########## 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: To be more specific how context.dataSchema() ends up being null it's basically that the logical write info handed to us from Spark just hasn't determined the schema yet at some early points in analysis, https://github.com/apache/iceberg/blame/main/spark/v4.0/spark/src/main/java/org/apache/iceberg/spark/source/SparkPositionDeltaWriteBuilder.java#L90 -- 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