This is an automated email from the ASF dual-hosted git repository. huajianlan pushed a commit to branch opt_insert_into_values in repository https://gitbox.apache.org/repos/asf/doris.git
commit 95a9cd2cc1524bcc6ba4249f38945dad1f0873d8 Author: 924060929 <lanhuaj...@selectdb.com> AuthorDate: Fri Dec 6 14:33:36 2024 +0800 fix --- .../main/java/org/apache/doris/nereids/parser/LogicalPlanBuilder.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/parser/LogicalPlanBuilder.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/parser/LogicalPlanBuilder.java index 30594e44d09..a71d41aa4f0 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/parser/LogicalPlanBuilder.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/parser/LogicalPlanBuilder.java @@ -1839,7 +1839,8 @@ public class LogicalPlanBuilder extends DorisParserBaseVisitor<Object> { @Override public LogicalPlan visitInlineTable(InlineTableContext ctx) { List<RowConstructorContext> rowConstructorContexts = ctx.rowConstructor(); - ImmutableList.Builder<List<NamedExpression>> rows = ImmutableList.builderWithExpectedSize(rowConstructorContexts.size()); + ImmutableList.Builder<List<NamedExpression>> rows + = ImmutableList.builderWithExpectedSize(rowConstructorContexts.size()); for (RowConstructorContext rowConstructorContext : rowConstructorContexts) { rows.add(visitRowConstructor(rowConstructorContext)); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org