wrong formatting psql expanded mode short columns

From: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
To: PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: wrong formatting psql expanded mode short columns
Date: 2017-11-16 07:01:11
Message-ID: CAFj8pRC+xBOjfufdaerg15nX2OuQzGH_NLbELMTEjSxE12Tw_w@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

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

Browse pgsql-hackers by date

  From Date Subject
Next Message Masahiko Sawada 2017-11-16 08:30:02 Re: User defined data types in Logical Replication
Previous Message Michael Paquier 2017-11-16 06:45:35 Re: pgsql: Disable installcheck tests for test_session_hooks