mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-30 19:00:29 +08:00
Include tablespace options in verbose output of \db
This commit is contained in:
parent
cec8394b5c
commit
cae10ca27e
@ -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");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user