dramaticlly commented on code in PR #12844: URL: https://github.com/apache/iceberg/pull/12844#discussion_r2138139230
########## api/src/main/java/org/apache/iceberg/actions/RewriteTablePath.java: ########## @@ -112,5 +122,15 @@ interface Result { /** Name of latest metadata file version */ String latestVersion(); + + /** count of rewrite delete files, default value is 0 */ + default int deleteFilesCount() { + return 0; + } + + /** count of rewrite metadata files involved, default value is 0 */ + default int metadataFilesCount() { + return 0; Review Comment: Can you share a bit more on what are those 2 results are used for? I think add some unit tests with non-zero results would help. -- 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