wypoon commented on code in PR #7469: URL: https://github.com/apache/iceberg/pull/7469#discussion_r1181973306
########## core/src/main/java/org/apache/iceberg/CatalogProperties.java: ########## @@ -41,6 +41,11 @@ private CatalogProperties() {} public static final boolean CACHE_ENABLED_DEFAULT = true; + /** Controls whether the caching catalog will cache table entries using case-sensitive keys. */ + public static final String CACHE_CASE_SENSITIVE = "cache.case-sensitive"; + + public static final boolean CACHE_CASE_SENSITIVE_DEFAULT = false; Review Comment: @RussellSpitzer are you referring to https://github.com/apache/spark/blob/v3.4.0/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala#L867-L873 That conf defaults to false, so I am in fact matching it. "Default to case insensitive. It is highly discouraged to turn on case sensitive mode." -- 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