amogh-jahagirdar commented on code in PR #8648: URL: https://github.com/apache/iceberg/pull/8648#discussion_r1341981908
########## api/src/main/java/org/apache/iceberg/view/View.java: ########## @@ -77,6 +77,15 @@ public interface View { */ Map<String, String> properties(); + /** + * Return the view's base location. + * + * @return this view's location + */ + default String location() { + return null; Review Comment: A view would always have a location no? I would've thought we could follow the same pattern we have for `Table` and just have `BaseView` override and return the location (no default implementation needed, just a plain old interface method definition). -- 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