From 34522a5bd694b5d433c79e2c622db7cea6916db6 Mon Sep 17 00:00:00 2001 From: 924060929 Date: Fri, 13 Dec 2024 11:56:53 +0800 Subject: [PATCH] fix --- .../doris/nereids/trees/plans/commands/insert/InsertUtils.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/insert/InsertUtils.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/insert/InsertUtils.java index a104ac824579cf6..095345c1f94f19b 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/insert/InsertUtils.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/commands/insert/InsertUtils.java @@ -367,8 +367,7 @@ public static Plan normalizePlan(LogicalPlan plan, TableIf table, ); } - Optional analyzer = Optional.empty(); - analyzeContext.map( + Optional analyzer = analyzeContext.map( cascadesContext -> buildExprAnalyzer(plan, cascadesContext) );