zhilinli123 commented on code in PR #5992:
URL: https://github.com/apache/seatunnel/pull/5992#discussion_r1493936080
##########
seatunnel-api/src/main/java/org/apache/seatunnel/api/serialization/DeserializationSchema.java:
##########
@@ -29,13 +30,15 @@ public interface DeserializationSchema<T> extends
Serializable {
* Deserializes the byte message.
*
* @param message The message, as a byte array.
+ * @param tablePath The Registry name.
* @return The deserialized message as an SeaTunnel Row (null if the
message cannot be
* deserialized).
*/
- T deserialize(byte[] message) throws IOException;
+ T deserialize(byte[] message, TablePath tablePath) throws IOException;
Review Comment:
> Why add it here, it's pretty destructive
>
> cc @Hisoka-X @EricJoy2048
You mean add another implementation?
--
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]