mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
This patch fixes a few more uppercase GUC vars. I also removed an
example from the RESET reference page because it seemed completely redundant.
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
<!--
|
<!--
|
||||||
$PostgreSQL: pgsql/doc/src/sgml/ref/analyze.sgml,v 1.17 2003/11/29 19:51:38 pgsql Exp $
|
$PostgreSQL: pgsql/doc/src/sgml/ref/analyze.sgml,v 1.18 2003/12/14 00:15:03 neilc Exp $
|
||||||
PostgreSQL documentation
|
PostgreSQL documentation
|
||||||
-->
|
-->
|
||||||
|
|
||||||
@ -134,7 +134,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="PARAMETER">table</replaceable> [ (<rep
|
|||||||
|
|
||||||
<para>
|
<para>
|
||||||
The extent of analysis can be controlled by adjusting the
|
The extent of analysis can be controlled by adjusting the
|
||||||
<varname>DEFAULT_STATISTICS_TARGET</varname> parameter variable, or
|
<varname>default_statistics_target</varname> parameter variable, or
|
||||||
on a column-by-column basis by setting the per-column statistics
|
on a column-by-column basis by setting the per-column statistics
|
||||||
target with <command>ALTER TABLE ... ALTER COLUMN ... SET
|
target with <command>ALTER TABLE ... ALTER COLUMN ... SET
|
||||||
STATISTICS</command> (see <xref linkend="sql-altertable"
|
STATISTICS</command> (see <xref linkend="sql-altertable"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<!--
|
<!--
|
||||||
$PostgreSQL: pgsql/doc/src/sgml/ref/create_user.sgml,v 1.31 2003/11/29 19:51:38 pgsql Exp $
|
$PostgreSQL: pgsql/doc/src/sgml/ref/create_user.sgml,v 1.32 2003/12/14 00:15:03 neilc Exp $
|
||||||
PostgreSQL documentation
|
PostgreSQL documentation
|
||||||
-->
|
-->
|
||||||
|
|
||||||
@ -98,7 +98,7 @@ where <replaceable class="PARAMETER">option</replaceable> can be:
|
|||||||
These key words control whether the password is stored
|
These key words control whether the password is stored
|
||||||
encrypted in the system catalogs. (If neither is specified,
|
encrypted in the system catalogs. (If neither is specified,
|
||||||
the default behavior is determined by the configuration
|
the default behavior is determined by the configuration
|
||||||
parameter <varname>PASSWORD_ENCRYPTION</varname>.) If the
|
parameter <varname>password_encryption</varname>.) If the
|
||||||
presented password string is already in MD5-encrypted format,
|
presented password string is already in MD5-encrypted format,
|
||||||
then it is stored encrypted as-is, regardless of whether
|
then it is stored encrypted as-is, regardless of whether
|
||||||
<literal>ENCRYPTED</> or <literal>UNENCRYPTED</> is specified
|
<literal>ENCRYPTED</> or <literal>UNENCRYPTED</> is specified
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<!--
|
<!--
|
||||||
$PostgreSQL: pgsql/doc/src/sgml/ref/postmaster.sgml,v 1.43 2003/12/13 23:59:07 neilc Exp $
|
$PostgreSQL: pgsql/doc/src/sgml/ref/postmaster.sgml,v 1.44 2003/12/14 00:15:03 neilc Exp $
|
||||||
PostgreSQL documentation
|
PostgreSQL documentation
|
||||||
-->
|
-->
|
||||||
|
|
||||||
@ -376,7 +376,7 @@ PostgreSQL documentation
|
|||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Default value of the <varname>DATESTYLE</varname> run-time
|
Default value of the <varname>DateStyle</varname> run-time
|
||||||
parameter. (The use of this environment variable is deprecated.)
|
parameter. (The use of this environment variable is deprecated.)
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
@ -544,7 +544,7 @@ PostgreSQL documentation
|
|||||||
<prompt>$</prompt> <userinput>postmaster -c sort_mem=1234</userinput>
|
<prompt>$</prompt> <userinput>postmaster -c sort_mem=1234</userinput>
|
||||||
<prompt>$</prompt> <userinput>postmaster --sort-mem=1234</userinput>
|
<prompt>$</prompt> <userinput>postmaster --sort-mem=1234</userinput>
|
||||||
</screen>
|
</screen>
|
||||||
Either form overrides whatever setting might exist for <varname>SORT_MEM</>
|
Either form overrides whatever setting might exist for <varname>sort_mem</>
|
||||||
in <filename>postgresql.conf</>. Notice that underscores in parameter
|
in <filename>postgresql.conf</>. Notice that underscores in parameter
|
||||||
names can be written as either underscore or dash on the command line.
|
names can be written as either underscore or dash on the command line.
|
||||||
</para>
|
</para>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<!--
|
<!--
|
||||||
$PostgreSQL: pgsql/doc/src/sgml/ref/reset.sgml,v 1.25 2003/11/29 19:51:39 pgsql Exp $
|
$PostgreSQL: pgsql/doc/src/sgml/ref/reset.sgml,v 1.26 2003/12/14 00:15:03 neilc Exp $
|
||||||
PostgreSQL documentation
|
PostgreSQL documentation
|
||||||
-->
|
-->
|
||||||
|
|
||||||
@ -83,14 +83,7 @@ SET <replaceable class="parameter">parameter</replaceable> TO DEFAULT
|
|||||||
<title>Examples</title>
|
<title>Examples</title>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Set <varname>DATESTYLE</> to its default value:
|
Set the <varname>geqo</> configuration variable to its default value:
|
||||||
<screen>
|
|
||||||
RESET datestyle;
|
|
||||||
</screen>
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
Set <varname>GEQO</> to its default value:
|
|
||||||
<screen>
|
<screen>
|
||||||
RESET geqo;
|
RESET geqo;
|
||||||
</screen>
|
</screen>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<!--
|
<!--
|
||||||
$PostgreSQL: pgsql/doc/src/sgml/ref/select.sgml,v 1.73 2003/11/29 19:51:39 pgsql Exp $
|
$PostgreSQL: pgsql/doc/src/sgml/ref/select.sgml,v 1.74 2003/12/14 00:15:03 neilc Exp $
|
||||||
PostgreSQL documentation
|
PostgreSQL documentation
|
||||||
-->
|
-->
|
||||||
|
|
||||||
@ -1022,7 +1022,7 @@ SELECT distributors.* FROM distributors d, distributors distributors;
|
|||||||
<command>SELECT</command> statement that also contains an explicit
|
<command>SELECT</command> statement that also contains an explicit
|
||||||
<literal>FROM</literal> clause. Also, it is possible to disable
|
<literal>FROM</literal> clause. Also, it is possible to disable
|
||||||
the implicit-<literal>FROM</literal> feature by setting the
|
the implicit-<literal>FROM</literal> feature by setting the
|
||||||
<varname>ADD_MISSING_FROM</> parameter to false.
|
<varname>add_missing_from</> parameter to false.
|
||||||
</para>
|
</para>
|
||||||
</refsect2>
|
</refsect2>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user