xy720 commented on a change in pull request #3981:
URL: https://github.com/apache/incubator-doris/pull/3981#discussion_r449891473
##########
File path: fe/src/main/java/org/apache/doris/analysis/ModifyPartitionClause.java
##########
@@ -64,11 +89,17 @@ public void analyze(Analyzer analyzer) throws
AnalysisException {
return this.properties;
}
+ public boolean isNeedExpand() {
+ return this.needExpand;
+ }
+
@Override
public String toSql() {
StringBuilder sb = new StringBuilder();
sb.append("MODIFY PARTITION ");
- sb.append(partitionName);
+ sb.append("(");
+ sb.append(Joiner.on(", ").join(partitionNames));
Review comment:
fixed
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]