pgsql: psql: Don't try to print a partition constraint we didn't fetch.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: psql: Don't try to print a partition constraint we didn't fetch.
Date: 2017-09-29 20:03:38
Message-ID: E1dy1Va-0001s4-B0@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

psql: Don't try to print a partition constraint we didn't fetch.

If \d rather than \d+ is used, then verbose is false and we don't ask
the server for the partition constraint; so we shouldn't print it in
that case either.

Maksim Milyutin, per a report from Jesper Pedersen. Reviewed by
Jesper Pedersen and Amit Langote.

Discussion: http://postgr.es/m/2af5fc4d-7bcc-daa8-4fe6-86274bea363c@redhat.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/69c16983e103f913ee0dae7f288611de006ba2ba

Modified Files
--------------
src/bin/psql/describe.c | 17 ++++++++++-------
1 file changed, 10 insertions(+), 7 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2017-09-29 20:26:42 pgsql: Fix inadequate locking during get_rel_oids().
Previous Message Robert Haas 2017-09-29 17:59:45 pgsql: pgbench: If we fail to send a command to the server, fail.