pgsql: Teach psql to display the comments on conversions and domains.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Teach psql to display the comments on conversions and domains.
Date: 2011-08-08 16:26:28
Message-ID: E1QqSeq-0005hF-Um@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Teach psql to display the comments on conversions and domains.

\dc and \dD now accept a "+" option, which will cause the comments to
be displayed. Along the way, correct a few oversights in the previous
commit in this area, 3b17efdfdd846c9bfad1637686e6f18198ea3df5 - namely,
(1) when \dL+ is used, make description still be the last column, for
consistency with what we've done elsewhere; and (2) document the
difference between \dC and \dC+.

Josh Kupershmidt, with a couple of doc changes by me.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/c9ac00e6ecfaad4d6a3e1ee478b912c7227ae62a

Modified Files
--------------
doc/src/sgml/ref/psql-ref.sgml | 10 +++++-
src/bin/psql/command.c | 4 +-
src/bin/psql/describe.c | 68 ++++++++++++++++++++++++++++-----------
src/bin/psql/describe.h | 4 +-
src/bin/psql/help.c | 4 +-
5 files changed, 63 insertions(+), 27 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2011-08-08 20:31:07 pgsql: Teach psql to display the comments on SQL/MED objects in verbose
Previous Message Robert Haas 2011-08-08 13:20:04 pgsql: Teach vacuumlo to limit number of removals, via new -l option.