CASSANDRA-19150 cqlsh left columns alignment

This commit is contained in:
Maxim Muzafarov 2023-12-09 17:05:08 +01:00
parent c069a0ffb6
commit 35814b8db7
1 changed files with 1 additions and 1 deletions

View File

@ -1098,7 +1098,7 @@ class Shell(cmd.Cmd):
# print row data
for row in formatted_values:
line = ' | '.join(col.rjust(w, color=self.color) for (col, w) in zip(row, widths))
line = ' | '.join(col.ljust(w, color=self.color) for (col, w) in zip(row, widths))
self.writeresult(' ' + line)
if tty: