Carl-Zhou-CN commented on code in PR #7355:
URL: https://github.com/apache/seatunnel/pull/7355#discussion_r1712864081
##########
seatunnel-core/seatunnel-flink-starter/seatunnel-flink-starter-common/src/main/java/org/apache/seatunnel/core/starter/flink/execution/DataStreamTableInfo.java:
##########
@@ -18,20 +18,22 @@
package org.apache.seatunnel.core.starter.flink.execution;
import org.apache.seatunnel.api.table.catalog.CatalogTable;
+import org.apache.seatunnel.api.table.type.SeaTunnelRow;
import org.apache.flink.streaming.api.datastream.DataStream;
-import org.apache.flink.types.Row;
import lombok.AllArgsConstructor;
import lombok.Data;
+import java.util.List;
+
@Data
@AllArgsConstructor
public class DataStreamTableInfo {
- private DataStream<Row> dataStream;
+ private DataStream<SeaTunnelRow> dataStream;
- private CatalogTable catalogTable;
+ private List<CatalogTable> catalogTable;
Review Comment:
Might it be better to change to catalogTables instead
--
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]