diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-08-08 16:29:57 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-08-08 16:30:39 -0400 |
commit | d82a9d2a600b764aabdc37507c50d9229f8310b5 (patch) | |
tree | 94a51393e2973dbb34d662f47fdd1b82f1d8acd4 /doc/src | |
parent | c9ac00e6ecfaad4d6a3e1ee478b912c7227ae62a (diff) | |
download | postgresql-d82a9d2a600b764aabdc37507c50d9229f8310b5.tar.gz postgresql-d82a9d2a600b764aabdc37507c50d9229f8310b5.zip |
Teach psql to display the comments on SQL/MED objects in verbose mode.
The relevant backslash commands already exist, so we're just adding an
additional column. With this commit, all objects that have psql backslash
commands and accept comments should now display those comments at least
in verbose mode.
Josh Kupershmidt, with doc additions by me.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index 4a38d2afeb1..db97df13c4d 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1098,7 +1098,7 @@ testdb=> specified, only those servers whose name matches the pattern are listed. If the form <literal>\des+</literal> is used, a full description of each server is shown, including the - server's ACL, type, version, and options. + server's ACL, type, version, options, and description. </para> </listitem> </varlistentry> @@ -1112,7 +1112,8 @@ testdb=> If <replaceable class="parameter">pattern</replaceable> is specified, only entries whose table name or schema name matches the pattern are listed. If the form <literal>\det+</literal> - is used, generic options are also displayed. + is used, generic options and the foreign table description + are also displayed. </para> </listitem> </varlistentry> @@ -1150,8 +1151,8 @@ testdb=> If <replaceable class="parameter">pattern</replaceable> is specified, only those foreign-data wrappers whose name matches the pattern are listed. If the form <literal>\dew+</literal> - is used, the ACL and options of the foreign-data wrapper are - also shown. + is used, the ACL, options, and description of the foreign-data + wrapper are also shown. </para> </listitem> </varlistentry> |