ajantha-bhat commented on code in PR #9487: URL: https://github.com/apache/iceberg/pull/9487#discussion_r1477365303
########## core/src/main/java/org/apache/iceberg/jdbc/JdbcCatalog.java: ########## @@ -80,19 +83,37 @@ public class JdbcCatalog extends BaseMetastoreCatalog private final Function<Map<String, String>, FileIO> ioBuilder; private final Function<Map<String, String>, JdbcClientPool> clientPoolBuilder; private final boolean initializeCatalogTables; + private final boolean updateCatalogTables; private CloseableGroup closeableGroup; public JdbcCatalog() { - this(null, null, true); + this(null, null, true, false); Review Comment: why is it false by default? By default it should check and update the JDBC backend table if it has old schema? -- 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