amrishlal commented on code in PR #8978:
URL: https://github.com/apache/hudi/pull/8978#discussion_r1239066715


##########
hudi-client/hudi-flink-client/src/main/java/org/apache/hudi/table/HoodieFlinkCopyOnWriteTable.java:
##########
@@ -153,6 +154,27 @@ public HoodieWriteMetadata<List<WriteStatus>> delete(
     return new FlinkDeleteCommitActionExecutor<>(context, writeHandle, config, 
this, instantTime, keys).execute();
   }
 
+  /**
+   * Delete the given prepared records from the Hoodie table, at the supplied 
instantTime.
+   *
+   * <p>This implementation requires that the input records are already 
tagged, and de-duped if needed.
+   *
+   * <p>Specifies the write handle explicitly in order to have fine-grained 
control with
+   * the underneath file.
+   *
+   * @param context {@link HoodieEngineContext}
+   * @param instantTime Instant Time for the action
+   * @param preppedRecords Hoodie records to delete
+   * @return {@link HoodieWriteMetadata}
+   */
+  public HoodieWriteMetadata<List<WriteStatus>> deletePrepped(

Review Comment:
   This also applies to other operations such as upsert. One set of methods are 
called from `HoodieFlinkWriteClient` by casting the object to 
`HoodieFlinkTable`. The other set of methods are derived from `HoodieTable`.



-- 
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: commits-unsubscr...@hudi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to