From cae10ca27e5d478353b9b053073e5f2a1cf97659 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Sun, 26 Jan 2014 18:11:15 +0100 Subject: [PATCH] Include tablespace options in verbose output of \db --- src/bin/psql/describe.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 0d4b151679a..43f1a1c12dd 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -176,6 +176,11 @@ describeTablespaces(const char *pattern, bool verbose) ",\n pg_catalog.shobj_description(oid, 'pg_tablespace') AS \"%s\"", gettext_noop("Description")); + if (verbose && pset.sversion >= 90000) + appendPQExpBuffer(&buf, + ",\n spcoptions AS \"%s\"", + gettext_noop("Options")); + appendPQExpBufferStr(&buf, "\nFROM pg_catalog.pg_tablespace\n");