我发现使用cqlsh显示的字符串值是右对齐的。是否有一个原因?有没有办法左对齐字符串?
cqlsh:test> create table test (id int, a ascii, t text, primary key(id));
cqlsh:test> insert into test (id, a, t) values (1, 'ascii', 'text');
cqlsh:test> insert into test (id, a, t) values (2, 'a', 't');
cqlsh:test> select * from test;
id | a | t
----+-------+------
1 | ascii | text
2 | a | t
(2 rows)
答案 0 :(得分:2)
我认为这主要是出于美学原因,但你可以改变它!
cqlsh只是一个使用python-driver的python文件。您只需在cqlsh的print_formatted_result
方法中更改以下代码:
for row in formatted_values:
line = ' | '.join(col.rjust(w, color=self.color) for (col, w) in zip(row, widths))
self.writeresult(' ' + line)
您可以将col.rjust更改为ljust,center等,或者您只需将其更改为' col'按原样打印数据。
使用ljust的例子:
cqlsh:friends> select * from group_friends;
groupid | friendid | time
--------------------------------------+----------+--------
13814000-1dd2-11b2-8080-808080808080 | 1 | 123456
13814000-1dd2-11b2-8080-808080808080 | 2 | 123456
13814000-1dd2-11b2-8080-808080808080 | 4 | 123456
13814000-1dd2-11b2-8080-808080808080 | 8 | 123456
13814000-1dd2-11b2-8080-808080808080 | 22 | 123456
13814000-1dd2-11b2-8080-808080808080 | 1002 | 123456
答案 1 :(得分:0)
尝试使用shell的column
程序来对齐列:
$CASSANDRA_HOME/bin/cqlsh <<EOF | grep -v '+--' | perl -pe 's{[ ]{4,}}{|}g' | column -t -s '|' | tee out.txt
select mycol1,mycol2 from mykeyspace.mytable;
EOF
cqlsh
|
程序将基于column
的字段作为分隔符/分隔符对齐tee