aokolnychyi commented on a change in pull request #671: Add case insensitive 
support to CachingCatalog
URL: https://github.com/apache/incubator-iceberg/pull/671#discussion_r350077780
 
 

 ##########
 File path: core/src/main/java/org/apache/iceberg/CachingCatalog.java
 ##########
 @@ -33,17 +33,31 @@
 public class CachingCatalog implements Catalog {
 
   public static Catalog wrap(Catalog catalog) {
-    return new CachingCatalog(catalog);
+    return wrap(catalog, true);
+  }
+
+  public static Catalog wrap(Catalog catalog, Boolean caseSensitive) {
 
 Review comment:
   nit: here as well

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to