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

Commit d6bc885

Browse files
author
Neil Conway
committed
Minor SGML markup fixes.
1 parent c93912b commit d6bc885

File tree

3 files changed

+21
-20
lines changed

3 files changed

+21
-20
lines changed

doc/src/sgml/config.sgml

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.16 2005/09/13 01:51:18 alvherre Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.17 2005/09/13 15:24:56 neilc Exp $
33
-->
44
<chapter Id="runtime-config">
55
<title>Run-time Configuration</title>
@@ -1715,20 +1715,20 @@ archive_command = 'copy "%p" /mnt/server/archivedir/"%f"' # Windows
17151715
<para>
17161716
Sets the planner's assumption about the effective size of the
17171717
disk cache that is available to a single index scan. This is
1718-
factored into estimates of the cost of using an index; a higher
1719-
value makes it more likely index scans will be used, a lower
1720-
value makes it more likely sequential scans will be used. When
1721-
setting this parameter you should consider both
1718+
factored into estimates of the cost of using an index; a
1719+
higher value makes it more likely index scans will be used, a
1720+
lower value makes it more likely sequential scans will be
1721+
used. When setting this parameter you should consider both
17221722
<productname>PostgreSQL</productname>'s shared buffers and the
17231723
portion of the kernel's disk cache that will be used for
1724-
<productname>PostgreSQL</productname> data files. Also, take into
1725-
account the expected number of concurrent queries using different
1726-
indexes, since they will have to share the available space.
1727-
This parameter has no effect on the size of shared memory
1728-
allocated by PostgreSQL, nor does it reserve kernel disk cache;
1729-
it is used only for estimation purposes.
1730-
The value is measured in disk pages, which are
1731-
normally 8192 bytes each. The default is 1000.
1724+
<productname>PostgreSQL</productname> data files. Also, take
1725+
into account the expected number of concurrent queries using
1726+
different indexes, since they will have to share the available
1727+
space. This parameter has no effect on the size of shared
1728+
memory allocated by <productname>PostgreSQL</productname>, nor
1729+
does it reserve kernel disk cache; it is used only for
1730+
estimation purposes. The value is measured in disk pages,
1731+
which are normally 8192 bytes each. The default is 1000.
17321732
</para>
17331733
</listitem>
17341734
</varlistentry>
@@ -3662,7 +3662,8 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
36623662
determines whether OIDs will be included in tables created by
36633663
<command>SELECT INTO</command>. In <productname>PostgreSQL</>
36643664
8.1 <varname>default_with_oids</> is disabled by default; in
3665-
prior versions of PostgreSQL, it was on by default.
3665+
prior versions of <productname>PostgreSQL</productname>, it
3666+
was on by default.
36663667
</para>
36673668

36683669
<para>

doc/src/sgml/datatype.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/datatype.sgml,v 1.158 2005/05/30 19:32:44 momjian Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/datatype.sgml,v 1.159 2005/09/13 15:24:56 neilc Exp $
33
-->
44

55
<chapter id="datatype">
@@ -1770,7 +1770,7 @@ January 8 04:05:06 1999 PST
17701770
literals be explicitly typed:
17711771
<programlisting>TIMESTAMP WITH TIME ZONE '2004-10-19 10:23:54+02'</programlisting>
17721772
If a literal is not explicitly indicated as being of <type>timestamp with time zone</type>,
1773-
PostgreSQL will silently ignore any time zone indication in the literal.
1773+
<productname>PostgreSQL</productname> will silently ignore any time zone indication in the literal.
17741774
That is, the resulting date/time value is derived from the date/time
17751775
fields in the input value, and is not adjusted for time zone.
17761776
</para>

doc/src/sgml/ref/alter_sequence.sgml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/ref/alter_sequence.sgml,v 1.10 2005/08/01 16:11:14 tgl Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/ref/alter_sequence.sgml,v 1.11 2005/09/13 15:24:57 neilc Exp $
33
PostgreSQL documentation
44
-->
55

@@ -132,7 +132,7 @@ ALTER SEQUENCE <replaceable class="parameter">name</replaceable> SET SCHEMA <rep
132132
</varlistentry>
133133

134134
<varlistentry>
135-
<term>CYCLE</term>
135+
<term><literal>CYCLE</literal></term>
136136
<listitem>
137137
<para>
138138
The optional <literal>CYCLE</literal> key word may be used to enable
@@ -150,7 +150,7 @@ ALTER SEQUENCE <replaceable class="parameter">name</replaceable> SET SCHEMA <rep
150150
</varlistentry>
151151

152152
<varlistentry>
153-
<term>NO CYCLE</term>
153+
<term><literal>NO CYCLE</literal></term>
154154
<listitem>
155155
<para>
156156
If the optional <literal>NO CYCLE</literal> key word is
@@ -197,7 +197,7 @@ ALTER SEQUENCE serial RESTART WITH 105;
197197

198198
<para>
199199
<command>ALTER SEQUENCE</command> will not immediately affect
200-
<literal>nextval</> results in backends,
200+
<function>nextval</> results in backends,
201201
other than the current one, that have preallocated (cached) sequence
202202
values. They will use up all cached values prior to noticing the changed
203203
sequence parameters. The current backend will be affected immediately.

0 commit comments

Comments
 (0)