rdblue commented on code in PR #12736: URL: https://github.com/apache/iceberg/pull/12736#discussion_r2060855402
########## core/src/main/java/org/apache/iceberg/MetadataColumns.java: ########## @@ -152,4 +154,19 @@ public static boolean isMetadataColumn(int id) { public static boolean nonMetadataColumn(String name) { return !isMetadataColumn(name); } + + public static Schema schemaWithRowLineage(Table table) { Review Comment: I think that accepting `Table` is too broad. This should just need the table schema. There's no need to check for the partition column here so you don't need to call `metadataColumn` and pass `table`. -- 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