This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push: new 2f6e5bff3f0 [branch-2.0](cherry-pick)fix insert overwrite getExecTimeout error (#33049) 2f6e5bff3f0 is described below commit 2f6e5bff3f0011312552a7f35fa38dec8436a99d Author: zhangdong <493738...@qq.com> AuthorDate: Sat Mar 30 09:34:16 2024 +0800 [branch-2.0](cherry-pick)fix insert overwrite getExecTimeout error (#33049) --- fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java b/fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java index 067c31f26be..e7a72755a03 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java +++ b/fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java @@ -416,7 +416,8 @@ public class StmtExecutor { LogicalPlan logicalPlan = ((LogicalPlanAdapter) parsedStmt).getLogicalPlan(); return logicalPlan instanceof InsertIntoTableCommand; } - return parsedStmt instanceof InsertStmt || parsedStmt instanceof CreateTableAsSelectStmt; + return parsedStmt instanceof InsertStmt || parsedStmt instanceof InsertOverwriteTableStmt + || parsedStmt instanceof CreateTableAsSelectStmt; } public boolean isAnalyzeStmt() { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org