nastra commented on code in PR #9487: URL: https://github.com/apache/iceberg/pull/9487#discussion_r1462806870
########## core/src/test/java/org/apache/iceberg/jdbc/TestJdbcUtil.java: ########## @@ -18,6 +18,22 @@ */ package org.apache.iceberg.jdbc; +import static org.apache.iceberg.jdbc.JdbcUtil.createCatalogTableSql; +import static org.apache.iceberg.jdbc.JdbcUtil.createCatalogViewSql; +import static org.apache.iceberg.jdbc.JdbcUtil.dropTableSql; +import static org.apache.iceberg.jdbc.JdbcUtil.dropViewSql; +import static org.apache.iceberg.jdbc.JdbcUtil.filterAndRemovePrefix; +import static org.apache.iceberg.jdbc.JdbcUtil.getTableSql; +import static org.apache.iceberg.jdbc.JdbcUtil.getViewSql; +import static org.apache.iceberg.jdbc.JdbcUtil.listTableNamespacesSql; +import static org.apache.iceberg.jdbc.JdbcUtil.listTablesSql; +import static org.apache.iceberg.jdbc.JdbcUtil.listViewNamespacesSql; +import static org.apache.iceberg.jdbc.JdbcUtil.listViewsSql; +import static org.apache.iceberg.jdbc.JdbcUtil.renameTableSql; +import static org.apache.iceberg.jdbc.JdbcUtil.renameViewSql; +import static org.apache.iceberg.jdbc.JdbcUtil.tableNamespaceSql; +import static org.apache.iceberg.jdbc.JdbcUtil.viewNamespaceSql; Review Comment: sorry if it wasn't clear, but I actually meant to only statically import `assertThat()` from `Assertions` in my [comment](https://github.com/apache/iceberg/pull/9487#discussion_r1458873570) :) -- 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