Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
morningman committed Dec 10, 2024
1 parent e86492c commit 003211f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -998,7 +998,7 @@ public static String getExplainString(List<? extends Expr> exprs, String prefix)
// [prefix ]expr1,
// [prefix ]expr2,
// [prefix ]expr3
return Joiner.on(",\n").join(exprs.stream()
return Joiner.on("\n").join(exprs.stream()
.map(expr -> prefix + " " + expr.toSql()).collect(Collectors.toList()));
}

Expand Down

0 comments on commit 003211f

Please sign in to comment.