rdblue commented on code in PR #5913:
URL: https://github.com/apache/iceberg/pull/5913#discussion_r989564302


##########
core/src/main/java/org/apache/iceberg/ManifestWriter.java:
##########
@@ -147,15 +151,16 @@ void existing(ManifestEntry<F> entry) {
    * <p>The entry's snapshot ID will be this manifest's snapshot ID.
    *
    * @param deletedFile a file
+   * @param dataSequenceNumber a data sequence number for the file
    */
-  public void delete(F deletedFile) {
-    addEntry(reused.wrapDelete(snapshotId, deletedFile));
+  public void delete(F deletedFile, long dataSequenceNumber) {

Review Comment:
   Can we keep this method, but throw `UnsupportedOperationException`? That way 
it isn't a compile or linker error, we can send a reasonable message explaining 
why.



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to