leaves12138 commented on code in PR #6091:
URL: https://github.com/apache/paimon/pull/6091#discussion_r2284716141


##########
paimon-core/src/main/java/org/apache/paimon/table/sink/TableWrite.java:
##########
@@ -57,6 +57,9 @@ public interface TableWrite extends AutoCloseable {
     /** Write a row with bucket. */
     void write(InternalRow row, int bucket) throws Exception;
 
+    /** Write a row with partition and bucket. */
+    void write(InternalRow row, BinaryRow partition, int bucket) throws 
Exception;

Review Comment:
   OK



##########
paimon-core/src/main/java/org/apache/paimon/table/sink/TableWriteImpl.java:
##########
@@ -161,6 +161,11 @@ public void write(InternalRow row, int bucket) throws 
Exception {
         writeAndReturn(row, bucket);
     }
 
+    @Override
+    public void write(InternalRow row, BinaryRow partition, int bucket) throws 
Exception {

Review Comment:
   OK



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

Reply via email to