File tree Expand file tree Collapse file tree
ppl/src/main/java/org/opensearch/sql/ppl/parser Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -561,8 +561,7 @@ public UnresolvedPlan visitTableFunction(TableFunctionContext ctx) {
561561 arg -> {
562562 String argName = (arg .ident () != null ) ? arg .ident ().getText () : null ;
563563 builder .add (
564- new UnresolvedArgument (
565- argName , this .internalVisitExpression (arg .expression ())));
564+ new UnresolvedArgument (argName , this .internalVisitExpression (arg .expression ())));
566565 });
567566 return new TableFunction (this .internalVisitExpression (ctx .qualifiedName ()), builder .build ());
568567 }
Original file line number Diff line number Diff line change 4444import com .google .common .collect .ImmutableList ;
4545import com .google .common .collect .ImmutableMap ;
4646import java .util .Arrays ;
47- import java .util .Collections ;
4847import java .util .List ;
4948import java .util .Locale ;
5049import java .util .Map ;
You can’t perform that action at this time.
0 commit comments