This is an automated email from the ASF dual-hosted git repository. yiguolei 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 90e5c5985e4 [fix](show proc) Fix insert into command cannot be seen in show proc #34953 90e5c5985e4 is described below commit 90e5c5985e439d94e7df808db27f7670b95cc980 Author: zhiqiang <seuhezhiqi...@163.com> AuthorDate: Fri May 17 17:53:08 2024 +0800 [fix](show proc) Fix insert into command cannot be seen in show proc #34953 --- fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 14b76daa8ed..0f644ea2006 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 @@ -1955,8 +1955,9 @@ public class StmtExecutor { coord.setLoadZeroTolerance(context.getSessionVariable().getEnableInsertStrict()); coord.setQueryType(TQueryType.LOAD); profile.addExecutionProfile(coord.getExecutionProfile()); - - QeProcessorImpl.INSTANCE.registerQuery(context.queryId(), coord); + QeProcessorImpl.QueryInfo queryInfo = + new QeProcessorImpl.QueryInfo(context, this.getOriginStmtInString(), coord); + QeProcessorImpl.INSTANCE.registerQuery(context.queryId(), queryInfo); coord.exec(); int execTimeout = context.getExecTimeout(); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org