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


##########
paimon-core/src/main/java/org/apache/paimon/mergetree/compact/FullChangelogMergeFunctionWrapper.java:
##########
@@ -107,7 +125,12 @@ public ChangelogResult getResult() {
                 if (!merged.isAdd()) {
                     reusedResult.addChangelog(replace(reusedBefore, 
RowKind.DELETE, topLevelKv));
                 } else if (!changelogRowDeduplicate
-                        || !valueEqualiser.equals(topLevelKv.value(), 
merged.value())) {
+                        || (ArrayUtils.isEmpty(projection)

Review Comment:
   fixed



##########
paimon-core/src/main/java/org/apache/paimon/mergetree/compact/FullChangelogMergeFunctionWrapper.java:
##########
@@ -41,6 +44,9 @@ public class FullChangelogMergeFunctionWrapper implements 
MergeFunctionWrapper<C
     private final int maxLevel;
     private final RecordEqualiser valueEqualiser;
     private final boolean changelogRowDeduplicate;
+    private final int[] projection;

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