From ae000795d7fb69d14a8e30c5a69cfe73aeaf1bad Mon Sep 17 00:00:00 2001 From: Pratyaksh Sharma Date: Wed, 27 Oct 2021 03:45:20 +0530 Subject: [PATCH] [HUDI-1475]: fixed java doc for precombine api (#3867) --- .../java/org/apache/hudi/common/model/HoodieRecordPayload.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hudi-common/src/main/java/org/apache/hudi/common/model/HoodieRecordPayload.java b/hudi-common/src/main/java/org/apache/hudi/common/model/HoodieRecordPayload.java index 7ebf9887a..36dd30b65 100644 --- a/hudi-common/src/main/java/org/apache/hudi/common/model/HoodieRecordPayload.java +++ b/hudi-common/src/main/java/org/apache/hudi/common/model/HoodieRecordPayload.java @@ -45,7 +45,7 @@ public interface HoodieRecordPayload extends Seri T preCombine(T oldValue); /** - * When more than one HoodieRecord have the same HoodieKey, this function combines them before attempting to insert/upsert by taking in a property map. + * When more than one HoodieRecord have the same HoodieKey in the incoming batch, this function combines them before attempting to insert/upsert by taking in a property map. * Implementation can leverage the property to decide their business logic to do preCombine. * * @param oldValue instance of the old {@link HoodieRecordPayload} to be combined with.