Minor copy-editing.

This commit is contained in:
Tom Lane 2008-11-21 20:21:59 +00:00
parent 822f26069e
commit 86422cbbfc
1 changed files with 8 additions and 6 deletions

View File

@ -1,4 +1,4 @@
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.197 2008/11/21 19:42:12 mha Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.198 2008/11/21 20:21:59 tgl Exp $ -->
<chapter Id="runtime-config"> <chapter Id="runtime-config">
<title>Server Configuration</title> <title>Server Configuration</title>
@ -32,7 +32,8 @@
Some settings specify a memory or time value. Each of these has an Some settings specify a memory or time value. Each of these has an
implicit unit, which is either kilobytes, blocks (typically eight implicit unit, which is either kilobytes, blocks (typically eight
kilobytes), milliseconds, seconds, or minutes. Default units can be kilobytes), milliseconds, seconds, or minutes. Default units can be
queried by referencing <literal>pg_settings.unit</>. For convenience, found by referencing <structname>pg_settings</>.<structfield>unit</>.
For convenience,
a different unit can also be specified explicitly. Valid memory units a different unit can also be specified explicitly. Valid memory units
are <literal>kB</literal> (kilobytes), <literal>MB</literal> are <literal>kB</literal> (kilobytes), <literal>MB</literal>
(megabytes), and <literal>GB</literal> (gigabytes); valid time units (megabytes), and <literal>GB</literal> (gigabytes); valid time units
@ -43,10 +44,11 @@
</para> </para>
<para> <para>
Settings of type 'enum' are specified the same way at string settings, Parameters of type <quote>enum</> are specified in the same way as string
but are restricted to a limited range of values. To find available parameters, but are restricted to a limited set of values. The allowed
values, look at <literal>pg_settings.enumvals</>. Enum settings are values can be found
case insensitive. from <structname>pg_settings</>.<structfield>enumvals</>.
Enum parameter values are case-insensitive.
</para> </para>
<para> <para>