为什么cqlsh右对齐字符串?

时间:2015-03-04 06:57:18

标签: cassandra cql cqlsh

我发现使用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)

2 个答案:

答案 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
  1. 使用此处文档将输入发送至cqlsh
  2. 使用您最喜欢的正则表达式工具删除多余的空格(但请注意不要在数据中删除它们)
  3. 使用|程序将基于column的字段作为分隔符/分隔符对齐
  4. (可选)使用tee
  5. 将输出复制到txt文件