1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Have SHOW ALL include variable descriptions.

Matthias Schmidt
This commit is contained in:
Bruce Momjian
2005-06-14 20:42:53 +00:00
parent cf48d8b3aa
commit 61e2c00e64
2 changed files with 23 additions and 16 deletions

View File

@ -1,5 +1,5 @@
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/show.sgml,v 1.38 2005/04/08 00:59:58 neilc Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/show.sgml,v 1.39 2005/06/14 20:42:52 momjian Exp $
PostgreSQL documentation
-->
@ -118,7 +118,7 @@ SHOW ALL
<term><literal>ALL</literal></term>
<listitem>
<para>
Show the values of all configuration parameters.
Show the values of all configuration parameters, with descriptions.
</para>
</listitem>
</varlistentry>
@ -164,17 +164,17 @@ SHOW geqo;
Show all settings:
<programlisting>
SHOW ALL;
name | setting
--------------------------------+----------------------------------------------
add_missing_from | off
archive_command | unset
australian_timezones | off
name | setting | description
--------------------------------+--------------------------------+----------------------------------------------------------------------------------------------
add_missing_from | off | Automatically adds missing table references to FROM clauses.
archive_command | unset | WAL archiving command.
australian_timezones | off | Interprets ACST, CST, EST, and SAT as Australian time zones.
.
.
.
work_mem | 1024
zero_damaged_pages | off
(140 rows)
work_mem | 1024 | Sets the maximum memory to be used for query workspaces.
zero_damaged_pages | off | Continues processing past damaged page headers.
(146 rows)
</programlisting>
</para>
</refsect1>