morrySnow commented on code in PR #34225:
URL: https://github.com/apache/doris/pull/34225#discussion_r1582031870
##########
fe/fe-core/src/main/java/org/apache/doris/analysis/AddRollupClause.java:
##########
@@ -89,6 +89,11 @@ public void analyze(Analyzer analyzer) throws
AnalysisException {
baseRollupName = Strings.emptyToNull(baseRollupName);
}
+ @Override
+ public boolean allowOpMTMV() {
+ return false;
Review Comment:
why cannot add rollup?
##########
fe/fe-core/src/main/java/org/apache/doris/analysis/ModifyColumnCommentClause.java:
##########
@@ -59,6 +59,11 @@ public void analyze(Analyzer analyzer) throws
AnalysisException {
}
}
+ @Override
+ public boolean allowOpMTMV() {
+ return false;
Review Comment:
why?
##########
fe/fe-core/src/main/java/org/apache/doris/analysis/ColumnRenameClause.java:
##########
@@ -63,6 +63,11 @@ public Map<String, String> getProperties() {
return null;
}
+ @Override
+ public boolean allowOpMTMV() {
+ return false;
Review Comment:
why cannot rename?
##########
fe/fe-core/src/main/java/org/apache/doris/analysis/ReorderColumnsClause.java:
##########
@@ -67,6 +67,11 @@ public Map<String, String> getProperties() {
return this.properties;
}
+ @Override
+ public boolean allowOpMTMV() {
+ return false;
Review Comment:
why?
##########
fe/fe-core/src/main/java/org/apache/doris/analysis/RollupRenameClause.java:
##########
@@ -63,6 +63,11 @@ public Map<String, String> getProperties() {
return null;
}
+ @Override
+ public boolean allowOpMTMV() {
+ return false;
Review Comment:
why?
--
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]