adonis0147 commented on code in PR #20206:
URL: https://github.com/apache/doris/pull/20206#discussion_r1209648251
##########
fe/fe-core/src/main/java/org/apache/doris/analysis/CreateMultiTableMaterializedViewStmt.java:
##########
@@ -42,16 +40,17 @@
import java.util.stream.Collectors;
public class CreateMultiTableMaterializedViewStmt extends CreateTableStmt {
- private final String mvName;
private final MVRefreshInfo.BuildMode buildMode;
private final MVRefreshInfo refreshInfo;
private final QueryStmt queryStmt;
private final Map<String, TableIf> tables = Maps.newHashMap();
- public CreateMultiTableMaterializedViewStmt(String mvName,
MVRefreshInfo.BuildMode buildMode,
+ public CreateMultiTableMaterializedViewStmt(boolean ifNotExists, TableName
mvName,
+ MVRefreshInfo.BuildMode buildMode,
MVRefreshInfo refreshInfo, KeysDesc keyDesc, PartitionDesc
partitionDesc, DistributionDesc distributionDesc,
Map<String, String> properties, QueryStmt queryStmt) {
- this.mvName = mvName;
+ this.ifNotExists = ifNotExists;
+ this.tableName = mvName;
Review Comment:
Why replace this?
--
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]