当使用 print-table 将 ASCII 表格打印到 stdout 时,如果任何值是包含任何换行符的字符串,则表格显示将断裂。例如
`
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 毫秒
`