yunlou11 commented on code in PR #5730: URL: https://github.com/apache/paimon/pull/5730#discussion_r2165236146
########## paimon-core/src/main/java/org/apache/paimon/mergetree/compact/LookupChangelogMergeFunctionWrapper.java: ########## @@ -114,9 +114,11 @@ public ChangelogResult getResult() { if (lookupResult != null) { if (lookupStrategy.deletionVector) { PositionedKeyValue positionedKeyValue = (PositionedKeyValue) lookupResult; - highLevel = positionedKeyValue.keyValue(); - deletionVectorsMaintainer.notifyNewDeletion( - positionedKeyValue.fileName(), positionedKeyValue.rowPosition()); + // Notify and check whether the record has been deleted in the deletion vector + if (deletionVectorsMaintainer.notifyNewDeletion( Review Comment: Okay, I'm willing to do this. -- 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...@paimon.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org