Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit b99cdde

Browse files
committed
Fix cross-references, update examples, copy-edit.
1 parent c264c4d commit b99cdde

File tree

2 files changed

+16
-25
lines changed

2 files changed

+16
-25
lines changed

doc/src/sgml/ref/reset.sgml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/reset.sgml,v 1.7 1999/07/22 15:09:14 thomas Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/reset.sgml,v 1.8 2000/04/08 02:39:02 tgl Exp $
33
Postgres documentation
44
-->
55

@@ -41,8 +41,7 @@ RESET <replaceable class="PARAMETER">variable</replaceable>
4141
<para>
4242
Refer to
4343
<xref linkend="sql-set-title" endterm="sql-set-title">
44-
for more information on available
45-
variables.
44+
for more information on available variables.
4645
</para>
4746
</listitem>
4847
</varlistentry>
@@ -68,7 +67,7 @@ RESET VARIABLE
6867
<para>
6968
Message returned if
7069
<replaceable class="PARAMETER">variable</replaceable> is successfully reset
71-
to its default value..
70+
to its default value.
7271
</para>
7372
</listitem>
7473
</varlistentry>
@@ -85,7 +84,7 @@ RESET VARIABLE
8584
Description
8685
</title>
8786
<para>
88-
<command>RESET</command> restores variables to the
87+
<command>RESET</command> restores variables to their
8988
default values.
9089
Refer to
9190
<xref linkend="sql-set-title" endterm="sql-set-title">
@@ -106,12 +105,7 @@ SET <replaceable class="parameter">variable</replaceable> = DEFAULT
106105
</title>
107106

108107
<para>
109-
<command>RESET</command> is a <productname>Postgres</productname>
110-
language extension.
111-
</para>
112-
113-
<para>
114-
Use to
108+
See also
115109
<xref linkend="sql-set-title" endterm="sql-set-title"> and
116110
<xref linkend="sql-show-title" endterm="sql-show-title">
117111
to manipulate variable values.

doc/src/sgml/ref/show.sgml

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/show.sgml,v 1.8 2000/02/15 20:49:07 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/show.sgml,v 1.9 2000/04/08 02:39:02 tgl Exp $
33
Postgres documentation
44
-->
55

@@ -40,8 +40,9 @@ SHOW <replaceable class="PARAMETER">keyword</replaceable>
4040
<term><replaceable class="PARAMETER">keyword</replaceable></term>
4141
<listitem>
4242
<para>
43-
Refer to <command>SET</command> for more information on available
44-
arguments.
43+
Refer to
44+
<xref linkend="sql-set-title" endterm="sql-set-title">
45+
for more information on available variables.
4546
</para>
4647
</listitem>
4748
</varlistentry>
@@ -62,7 +63,6 @@ SHOW <replaceable class="PARAMETER">keyword</replaceable>
6263
<varlistentry>
6364
<term><computeroutput>
6465
NOTICE: <replaceable class="PARAMETER">variable</replaceable> is <replaceable>value</replaceable>
65-
SHOW VARIABLE
6666
</computeroutput></term>
6767
<listitem>
6868
<para>
@@ -76,15 +76,14 @@ NOTICE: Unrecognized variable <replaceable>value</replaceable>
7676
</computeroutput></term>
7777
<listitem>
7878
<para>
79-
Message returned if <returnvalue>value</returnvalue> does not exist.
79+
Message returned if <returnvalue>variable</returnvalue> does not exist.
8080
</para>
8181
</listitem>
8282
</varlistentry>
8383

8484
<varlistentry>
8585
<term><computeroutput>
8686
NOTICE: Time zone is unknown
87-
SHOW VARIABLE
8887
</computeroutput></term>
8988
<listitem>
9089
<para>
@@ -125,12 +124,10 @@ SHOW VARIABLE
125124
Notes
126125
</title>
127126
<para>
128-
<command>SHOW</command> is a <productname>Postgres</productname>
129-
language extension.
130-
</para>
131-
<para>
132-
Refer to <command>SET</command>/<command>RESET</command>
133-
to set/reset variable values.
127+
See also
128+
<xref linkend="sql-set-title" endterm="sql-set-title"> and
129+
<xref linkend="sql-reset-title" endterm="sql-reset-title">
130+
to manipulate variable values.
134131
</para>
135132
</refsect2>
136133
</refsect1>
@@ -144,15 +141,15 @@ SHOW VARIABLE
144141

145142
<programlisting>
146143
SHOW DateStyle;
147-
NOTICE:DateStyle is Postgres with US (NonEuropean) conventions
144+
NOTICE: DateStyle is ISO with US (NonEuropean) conventions
148145
</programlisting>
149146
</para>
150147

151148
<para>
152149
Show the current genetic optimizer (<literal>geqo</literal>) setting:
153150
<programlisting>
154151
SHOW GEQO;
155-
NOTICE:GEQO is ON
152+
NOTICE: GEQO is ON beginning with 11 relations
156153
</programlisting>
157154
</para>
158155
</refsect1>

0 commit comments

Comments
 (0)