From 4a7e20155220811ad0330ca08a163c71f8dc9698 Mon Sep 17 00:00:00 2001 From: 924060929 Date: Fri, 20 Dec 2024 15:56:06 +0800 Subject: [PATCH] fix --- .../trees/plans/commands/insert/InsertIntoTableCommand.java | 3 ++- 1 file changed, 2 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 868f9b3b4a90d58..e0511bf7e24bae7 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 @@ -237,7 +237,8 @@ private BuildInsertExecutorResult initPlanOnce(ConnectContext ctx, if (cte.isPresent()) { this.logicalQuery = Optional.of((LogicalPlan) cte.get().withChildren(logicalQuery.get())); } - OlapGroupCommitInsertExecutor.analyzeGroupCommit(ctx, targetTableIf, this.logicalQuery.get(), this.insertCtx); + OlapGroupCommitInsertExecutor.analyzeGroupCommit( + ctx, targetTableIf, this.logicalQuery.get(), this.insertCtx); } finally { targetTableIf.readUnlock(); }