chenxinwei commented on code in PR #4126:
URL: https://github.com/apache/paimon/pull/4126#discussion_r1753089723


##########
paimon-core/src/main/java/org/apache/paimon/utils/ChangelogDeduplicateEqualiserSupplier.java:
##########
@@ -28,18 +28,29 @@
 import static org.apache.paimon.codegen.CodeGenUtils.newRecordEqualiser;
 
 /** A {@link Supplier} that returns the equaliser for the file store value. */
-public class ValueEqualiserSupplier implements 
SerializableSupplier<RecordEqualiser> {
+public class ChangelogDeduplicateEqualiserSupplier
+        implements SerializableSupplier<RecordEqualiser> {
 
     private static final long serialVersionUID = 1L;
 
     private final List<DataType> fieldTypes;
 
-    public ValueEqualiserSupplier(RowType keyType) {
+    private final int[] projection;
+

Review Comment:
   fixed



##########
paimon-core/src/main/java/org/apache/paimon/KeyValueFileStore.java:
##########
@@ -243,4 +250,12 @@ public void pushdown(Predicate keyFilter) {
     public Comparator<InternalRow> newKeyComparator() {
         return keyComparatorSupplier.get();
     }
+
+    private int[] getProjectionWithIgnoreFields(RowType rowType, List<String> 
ignoreFields) {

Review Comment:
   fixed



##########
paimon-common/src/main/java/org/apache/paimon/CoreOptions.java:
##########
@@ -1776,6 +1783,12 @@ public boolean changelogRowDeduplicate() {
         return options.get(CHANGELOG_PRODUCER_ROW_DEDUPLICATE);
     }
 
+    public List<String> changelogRowDeduplicateIgnoreSequenceField() {

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]

Reply via email to