aokolnychyi commented on a change in pull request #3640:
URL: https://github.com/apache/iceberg/pull/3640#discussion_r764082136



##########
File path: core/src/main/java/org/apache/iceberg/MergingSnapshotProducer.java
##########
@@ -125,6 +127,16 @@ public ThisT set(String property, String value) {
     return self();
   }
 
+  protected void caseSensitiveBinding(boolean newCaseSensitive) {

Review comment:
       Updated the var and method names.

##########
File path: core/src/main/java/org/apache/iceberg/MergingSnapshotProducer.java
##########
@@ -125,6 +127,16 @@ public ThisT set(String property, String value) {
     return self();
   }
 
+  protected void caseSensitiveBinding(boolean newCaseSensitive) {
+    this.caseSensitive = newCaseSensitive;
+    filterManager.caseSensitive(newCaseSensitive);
+    deleteFilterManager.caseSensitive(newCaseSensitive);
+  }
+
+  protected boolean caseSensitive() {

Review comment:
       Fixed.

##########
File path: core/src/main/java/org/apache/iceberg/MergingSnapshotProducer.java
##########
@@ -271,7 +282,7 @@ protected void validateAddedDataFiles(TableMetadata base, 
Long startingSnapshotI
     Set<Long> newSnapshots = history.second();
 
     ManifestGroup conflictGroup = new ManifestGroup(ops.io(), manifests, 
ImmutableList.of())
-        .caseSensitive(caseSensitive)
+        .caseSensitive(caseSensitive())

Review comment:
       Fixed.




-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



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

Reply via email to