This is an automated email from the ASF dual-hosted git repository. morrysnow pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 8606104de67 [debug](mtmv) add debug log for insert into plan (#50842) 8606104de67 is described below commit 8606104de67df4a4614eade023087dcad98d41b3 Author: zhangdong <zhangd...@selectdb.com> AuthorDate: Tue May 13 17:32:06 2025 +0800 [debug](mtmv) add debug log for insert into plan (#50842) --- .../nereids/trees/plans/commands/insert/InsertIntoTableCommand.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/insert/InsertIntoTableCommand.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/insert/InsertIntoTableCommand.java index 1bc212c60b0..1f843b2dc57 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/insert/InsertIntoTableCommand.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/insert/InsertIntoTableCommand.java @@ -455,7 +455,10 @@ public class InsertIntoTableCommand extends Command implements NeedAuditEncrypti // step 1, 2, 3 planner.plan(logicalPlanAdapter, ctx.getSessionVariable().toThrift()); - + if (LOG.isDebugEnabled()) { + LOG.debug("insert into plan for query_id: {} is: {}.", DebugUtil.printId(ctx.queryId()), + planner.getPhysicalPlan().treeString()); + } // step 4 return executorFactoryRef.get().build(); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org