Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Dec 6, 2024
1 parent cc76176 commit 61d85d6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1835,7 +1835,8 @@ public LogicalPlan visitRegularQuerySpecification(RegularQuerySpecificationConte
@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));
}
Expand Down

0 comments on commit 61d85d6

Please sign in to comment.