CalvinKirs commented on code in PR #56175:
URL: https://github.com/apache/doris/pull/56175#discussion_r2370829568


##########
fe/fe-core/src/main/java/org/apache/doris/job/extensions/insert/InsertJob.java:
##########
@@ -96,9 +98,15 @@ public class InsertJob extends AbstractJob<InsertTask, 
Map<Object, Object>> impl
             .add(new Column("CreateTime", ScalarType.createStringType()))
             .addAll(COMMON_SCHEMA)
             .add(new Column("Comment", ScalarType.createStringType()))
+            // only execute type = streaming need record
+            .add(new Column("Properties", ScalarType.createStringType()))
+            .add(new Column("ConsumedOffset", ScalarType.createStringType()))
+            .add(new Column("MaxOffset", ScalarType.createStringType()))
+            .add(new Column("LoadStatistic", ScalarType.createStringType()))
+            .add(new Column("ErrorMsg", ScalarType.createStringType()))

Review Comment:
   Similarly, an InsertJob does not have this semantics, which could be 
confusing for users



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