dataroaring commented on code in PR #19571: URL: https://github.com/apache/doris/pull/19571#discussion_r1193361105
########## fe/fe-core/src/main/java/org/apache/doris/analysis/MysqlLoadStmt.java: ########## @@ -31,11 +31,23 @@ import java.io.IOException; import java.util.Collections; import java.util.List; +import java.util.Map; public class MysqlLoadStmt extends InsertStmt { private DataDescription dataDescription; + public MysqlLoadStmt(DataDescription dataDescription, Map<String, String> properties, String comments) { + this.label = new LabelName(); + this.dataDescription = dataDescription; + this.properties = properties; + if (comments != null) { + this.comments = comments; + } else { + this.comments = ""; + } Review Comment: we should handle there in base class. -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org