rdblue commented on a change in pull request #3149:
URL: https://github.com/apache/iceberg/pull/3149#discussion_r711791371



##########
File path: core/src/main/java/org/apache/iceberg/io/DataWriter.java
##########
@@ -57,6 +56,12 @@ public DataWriter(FileAppender<T> appender, FileFormat 
format, String location,
     this.sortOrder = sortOrder;
   }
 
+  @Override
+  public void write(T row) {
+    appender.add(row);
+  }
+
+  @Deprecated

Review comment:
       When adding `@Deprecated` annotations, we should always include a 
comment that states when it will be removed. In this case, `0.14.0` or `1.0.0`.




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