我发现使用 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)
Run Code Online (Sandbox Code Playgroud)