Hisoka-X commented on code in PR #9673:
URL: https://github.com/apache/seatunnel/pull/9673#discussion_r2312195646


##########
seatunnel-api/src/main/java/org/apache/seatunnel/api/table/type/SeaTunnelRow.java:
##########
@@ -126,6 +126,14 @@ public int getBytesSize(SeaTunnelRowType rowType) {
         return size;
     }
 
+    public boolean isBinaryFormat() {
+        return getOptions().getOrDefault("is_binary_format", 
false).equals(true);
+    }
+
+    public boolean isComplete() {
+        return getOptions().getOrDefault("is_complete", false).equals(true);
+    }

Review Comment:
   The option value belong binary format, so I think we should not put the 
method into `SeaTunnelRow`.



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

Reply via email to