diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-06-07 04:50:57 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-06-07 04:50:57 +0000 |
commit | 4ee76ad88463e21fdb317e611f9ddc5706f4e792 (patch) | |
tree | 2bf7d35e67ebdef9b31c5506859ad34a6181201f /doc/src | |
parent | d927ed20c26678e9fc7b4c2fe89c637dd12b285a (diff) | |
download | postgresql-4ee76ad88463e21fdb317e611f9ddc5706f4e792.tar.gz postgresql-4ee76ad88463e21fdb317e611f9ddc5706f4e792.zip |
reset all: command line and .conf options change defaults
on RESET ALL those are restored.
show all: GUC + non-GUC.
SHOW ALL, RESET ALL
Marko Kreen
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/reset.sgml | 13 | ||||
-rw-r--r-- | doc/src/sgml/ref/show.sgml | 13 |
2 files changed, 24 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/reset.sgml b/doc/src/sgml/ref/reset.sgml index 7bb87570add..85194663eb2 100644 --- a/doc/src/sgml/ref/reset.sgml +++ b/doc/src/sgml/ref/reset.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/reset.sgml,v 1.10 2000/12/25 23:15:26 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/reset.sgml,v 1.11 2001/06/07 04:50:56 momjian Exp $ Postgres documentation --> @@ -16,6 +16,9 @@ Postgres documentation <synopsis> RESET <replaceable class="PARAMETER">variable</replaceable> </synopsis> + <synopsis> +RESET ALL + </synopsis> <refsect2 id="R2-SQL-RESET-1"> <title>Inputs</title> @@ -30,6 +33,14 @@ RESET <replaceable class="PARAMETER">variable</replaceable> </para> </listitem> </varlistentry> + <varlistentry> + <term>ALL</term> + <listitem> + <para> + Resets all run-time parameters to default values. + </para> + </listitem> + </varlistentry> </variablelist> </para> </refsect2> diff --git a/doc/src/sgml/ref/show.sgml b/doc/src/sgml/ref/show.sgml index 934b0567f2d..3674a97c5ba 100644 --- a/doc/src/sgml/ref/show.sgml +++ b/doc/src/sgml/ref/show.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/show.sgml,v 1.11 2000/12/25 23:15:26 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/show.sgml,v 1.12 2001/06/07 04:50:56 momjian Exp $ Postgres documentation --> @@ -16,6 +16,9 @@ Postgres documentation <synopsis> SHOW <replaceable class="PARAMETER">name</replaceable> </synopsis> + <synopsis> +SHOW ALL + </synopsis> <refsect2 id="R2-SQL-SHOW-1"> <title>Inputs</title> @@ -32,6 +35,14 @@ SHOW <replaceable class="PARAMETER">name</replaceable> </para> </listitem> </varlistentry> + <varlistentry> + <term>ALL</term> + <listitem> + <para> + Show all current session parameters. + </para> + </listitem> + </varlistentry> </variablelist> </para> </refsect2> |