当使用print-table将ASCII表格打印到标准输出时,如果任何值是含有任意新行的字符串,表格显示将损坏。例如
`
user=> (print-table [{:a "test" :b "test\ntest2"}])
| :a | :b |
|------+------------|
| test | test
test2 |
nil
`
我预期的输出应该看起来像这样
`
user=> (print-table [{:a "test" :b "test\ntest2"}])
| :a | :b |
|------+------------|
| test | test +
| | test2 |
nil
`
右边界上的+符号表示该行跨多行继续。这与PostgreSQL的psql工具显示带多行行的表格的方式类似
`
user=# select 'test' col1, E'test\ntest2\ntest3' col2;
col1 | col2
------+-------
test | test +
| test2+
| test3
(1 row)
时间:0.776 毫秒
`