Compare commits

...

2 Commits

Author SHA1 Message Date
Maxim Muzafarov 64c57a8a19
Merge 35814b8db7 into bdbdf8d710 2026-07-29 13:36:32 +08:00
Maxim Muzafarov 35814b8db7 CASSANDRA-19150 cqlsh left columns alignment 2023-12-09 17:05:08 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -1035,7 +1035,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: