nastra commented on code in PR #9487: URL: https://github.com/apache/iceberg/pull/9487#discussion_r1484011553
########## core/src/main/java/org/apache/iceberg/jdbc/JdbcCatalog.java: ########## @@ -60,16 +61,21 @@ import org.apache.iceberg.relocated.com.google.common.collect.Lists; import org.apache.iceberg.relocated.com.google.common.collect.Maps; import org.apache.iceberg.util.LocationUtil; +import org.apache.iceberg.util.PropertyUtil; +import org.apache.iceberg.view.BaseMetastoreViewCatalog; +import org.apache.iceberg.view.ViewOperations; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -public class JdbcCatalog extends BaseMetastoreCatalog +public class JdbcCatalog extends BaseMetastoreViewCatalog implements Configurable<Object>, SupportsNamespaces { public static final String PROPERTY_PREFIX = "jdbc."; private static final String NAMESPACE_EXISTS_PROPERTY = "exists"; private static final Logger LOG = LoggerFactory.getLogger(JdbcCatalog.class); private static final Joiner SLASH = Joiner.on("/"); + protected static final String VIEW_WARNING_LOG_MESSAGE = + "JDBC catalog is initialize without view support. To auto-migrate the JDBC database's schema and enable view support, set jdbc.add-view-support=true"; Review Comment: ```suggestion "JDBC catalog is initialized without view support. To auto-migrate the database's schema and enable view support, set jdbc.add-view-support=true"; ``` -- 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