Thread: wrong formatting psql expanded mode short columns

wrong formatting psql expanded mode short columns

From
Pavel Stehule
Date:
Hi

postgres=# select i, i from generate_series(1,5) g(i);
┌─[ RECORD 1 ]─┐
│ i │ 1 │
│ i │ 1 │
╞═[ RECORD 2 ]═╡
│ i │ 2 │
│ i │ 2 │
╞═[ RECORD 3 ]═╡
│ i │ 3 │
│ i │ 3 │
╞═[ RECORD 4 ]═╡
│ i │ 4 │
│ i │ 4 │
╞═[ RECORD 5 ]═╡
│ i │ 5 │
│ i │ 5 │
└───┴───┘


The last column need to be more wider

Regards

Pavel