rdblue commented on code in PR #13555: URL: https://github.com/apache/iceberg/pull/13555#discussion_r2223120485
########## spark/v4.0/spark/src/main/java/org/apache/iceberg/spark/SparkCatalog.java: ########## @@ -988,6 +999,8 @@ private Table loadFromPathIdentifier(PathIdentifier ident) { tagSnapshot != null, "Cannot find snapshot associated with tag name: %s", tag); return new SparkTable(table, tagSnapshot.snapshotId(), !cacheEnabled); + } else if (isRewrite) { + return new SparkTable(table, null, !cacheEnabled, true); Review Comment: Style: the last block ends with an empty newline but this one doesn't. -- 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