Skip to content

Commit

Permalink
[apache#6326] improve(CLI): Make CLI more extendable and maintainable.
Browse files Browse the repository at this point in the history
fix some error.
  • Loading branch information
Abyss-lord committed Jan 22, 2025
1 parent 6d0b742 commit 3fa8051
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public String getTableFormat(Column... columns) {
throw new RuntimeException(e);
}

return baos.toString();
return new String(baos.toByteArray(), StandardCharsets.UTF_8);
}

private void checkColumns(Column... columns) {
Expand Down

0 comments on commit 3fa8051

Please sign in to comment.