henrib commented on code in PR #5882: URL: https://github.com/apache/hive/pull/5882#discussion_r2250759167
########## standalone-metastore/metastore-rest-catalog/src/main/java/org/apache/iceberg/rest/HMSCachingCatalog.java: ########## @@ -35,24 +36,22 @@ import org.apache.iceberg.hive.HiveCatalog; import org.apache.iceberg.view.View; import org.apache.iceberg.view.ViewBuilder; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; /** * Class that wraps an Iceberg Catalog to cache tables. */ public class HMSCachingCatalog extends CachingCatalog implements SupportsNamespaces, ViewCatalog { + private static final Logger LOG = LoggerFactory.getLogger(HMSCachingCatalog.class); private final HiveCatalog hiveCatalog; public HMSCachingCatalog(HiveCatalog catalog, long expiration) { - super(catalog, true, expiration, Ticker.systemTicker()); + super(catalog, false, expiration, Ticker.systemTicker()); Review Comment: Hive is case-insensitive for metadata including table names ; not sure if catalog caller normalizes it so taking the safe choice (belt & suspender). -- 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: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org