Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit81e9455

Browse files
author
Neil Conway
committed
This patch fixes a few more uppercase GUC vars. I also removed an
example from the RESET reference page because it seemed completelyredundant.
1 parent0b52062 commit81e9455

File tree

5 files changed

+11
-18
lines changed

5 files changed

+11
-18
lines changed

‎doc/src/sgml/ref/analyze.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/ref/analyze.sgml,v 1.17 2003/11/29 19:51:38 pgsql Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/ref/analyze.sgml,v 1.18 2003/12/14 00:15:03 neilc Exp $
33
PostgreSQL documentation
44
-->
55

@@ -134,7 +134,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="PARAMETER">table</replaceable> [ (<rep
134134

135135
<para>
136136
The extent of analysis can be controlled by adjusting the
137-
<varname>DEFAULT_STATISTICS_TARGET</varname> parameter variable, or
137+
<varname>default_statistics_target</varname> parameter variable, or
138138
on a column-by-column basis by setting the per-column statistics
139139
target with <command>ALTER TABLE ... ALTER COLUMN ... SET
140140
STATISTICS</command> (see <xref linkend="sql-altertable"

‎doc/src/sgml/ref/create_user.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/ref/create_user.sgml,v 1.31 2003/11/29 19:51:38 pgsql Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/ref/create_user.sgml,v 1.32 2003/12/14 00:15:03 neilc Exp $
33
PostgreSQL documentation
44
-->
55

@@ -98,7 +98,7 @@ where <replaceable class="PARAMETER">option</replaceable> can be:
9898
These key words control whether the password is stored
9999
encrypted in the system catalogs. (If neither is specified,
100100
the default behavior is determined by the configuration
101-
parameter <varname>PASSWORD_ENCRYPTION</varname>.) If the
101+
parameter <varname>password_encryption</varname>.) If the
102102
presented password string is already in MD5-encrypted format,
103103
then it is stored encrypted as-is, regardless of whether
104104
<literal>ENCRYPTED</> or <literal>UNENCRYPTED</> is specified

‎doc/src/sgml/ref/postmaster.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/ref/postmaster.sgml,v 1.43 2003/12/13 23:59:07 neilc Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/ref/postmaster.sgml,v 1.44 2003/12/14 00:15:03 neilc Exp $
33
PostgreSQL documentation
44
-->
55

@@ -376,7 +376,7 @@ PostgreSQL documentation
376376

377377
<listitem>
378378
<para>
379-
Default value of the <varname>DATESTYLE</varname> run-time
379+
Default value of the <varname>DateStyle</varname> run-time
380380
parameter. (The use of this environment variable is deprecated.)
381381
</para>
382382
</listitem>
@@ -544,7 +544,7 @@ PostgreSQL documentation
544544
<prompt>$</prompt> <userinput>postmaster -c sort_mem=1234</userinput>
545545
<prompt>$</prompt> <userinput>postmaster --sort-mem=1234</userinput>
546546
</screen>
547-
Either form overrides whatever setting might exist for <varname>SORT_MEM</>
547+
Either form overrides whatever setting might exist for <varname>sort_mem</>
548548
in <filename>postgresql.conf</>. Notice that underscores in parameter
549549
names can be written as either underscore or dash on the command line.
550550
</para>

‎doc/src/sgml/ref/reset.sgml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/ref/reset.sgml,v 1.25 2003/11/29 19:51:39 pgsql Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/ref/reset.sgml,v 1.26 2003/12/14 00:15:03 neilc Exp $
33
PostgreSQL documentation
44
-->
55

@@ -83,14 +83,7 @@ SET <replaceable class="parameter">parameter</replaceable> TO DEFAULT
8383
<title>Examples</title>
8484

8585
<para>
86-
Set <varname>DATESTYLE</> to its default value:
87-
<screen>
88-
RESET datestyle;
89-
</screen>
90-
</para>
91-
92-
<para>
93-
Set <varname>GEQO</> to its default value:
86+
Set the <varname>geqo</> configuration variable to its default value:
9487
<screen>
9588
RESET geqo;
9689
</screen>

‎doc/src/sgml/ref/select.sgml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/ref/select.sgml,v 1.73 2003/11/29 19:51:39 pgsql Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/ref/select.sgml,v 1.74 2003/12/14 00:15:03 neilc Exp $
33
PostgreSQL documentation
44
-->
55

@@ -1022,7 +1022,7 @@ SELECT distributors.* FROM distributors d, distributors distributors;
10221022
<command>SELECT</command> statement that also contains an explicit
10231023
<literal>FROM</literal> clause. Also, it is possible to disable
10241024
the implicit-<literal>FROM</literal> feature by setting the
1025-
<varname>ADD_MISSING_FROM</> parameter to false.
1025+
<varname>add_missing_from</> parameter to false.
10261026
</para>
10271027
</refsect2>
10281028

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp