nastra commented on code in PR #9487: URL: https://github.com/apache/iceberg/pull/9487#discussion_r1484017802
########## core/src/main/java/org/apache/iceberg/jdbc/JdbcCatalog.java: ########## @@ -503,6 +560,104 @@ public boolean namespaceExists(Namespace namespace) { return JdbcUtil.namespaceExists(catalogName, connections, namespace); } + @Override + public boolean dropView(TableIdentifier identifier) { + if (!viewSupport) { + LOG.warn(VIEW_WARNING_LOG_MESSAGE); Review Comment: this feels inconsistent with `newViewOps()`. Can we also throw a UOE here and in `listViews()` / `renameView()`? -- 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