Minor SGML markup fixes.
authorNeil Conway <[email protected]>
Tue, 13 Sep 2005 15:24:57 +0000 (15:24 +0000)
committerNeil Conway <[email protected]>
Tue, 13 Sep 2005 15:24:57 +0000 (15:24 +0000)
doc/src/sgml/config.sgml
doc/src/sgml/datatype.sgml
doc/src/sgml/ref/alter_sequence.sgml

index 393ecdd9a57a986dfcd5f2de5ee7e2c5cf819f24..dd784ee335fc220673821959d6ec9e0787134944 100644 (file)
@@ -1715,20 +1715,20 @@ archive_command = 'copy "%p" /mnt/server/archivedir/"%f"'  # Windows
        <para>
         Sets the planner's assumption about the effective size of the
         disk cache that is available to a single index scan.  This is
-        factored into estimates of the cost of using an index; a higher
-        value makes it more likely index scans will be used, a lower
-        value makes it more likely sequential scans will be used. When
-        setting this parameter you should consider both
+        factored into estimates of the cost of using an index; a
+        higher value makes it more likely index scans will be used, a
+        lower value makes it more likely sequential scans will be
+        used. When setting this parameter you should consider both
         <productname>PostgreSQL</productname>'s shared buffers and the
         portion of the kernel's disk cache that will be used for
-        <productname>PostgreSQL</productname> data files.  Also, take into
-        account the expected number of concurrent queries using different
-        indexes, since they will have to share the available space.
-        This parameter has no effect on the size of shared memory
-        allocated by PostgreSQL, nor does it reserve kernel disk cache;
-        it is used only for estimation purposes.
-        The value is measured in disk pages, which are
-        normally 8192 bytes each. The default is 1000.
+        <productname>PostgreSQL</productname> data files.  Also, take
+        into account the expected number of concurrent queries using
+        different indexes, since they will have to share the available
+        space.  This parameter has no effect on the size of shared
+        memory allocated by <productname>PostgreSQL</productname>, nor
+        does it reserve kernel disk cache; it is used only for
+        estimation purposes.  The value is measured in disk pages,
+        which are normally 8192 bytes each. The default is 1000.
        </para>
       </listitem>
      </varlistentry>
@@ -3662,7 +3662,8 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
         determines whether OIDs will be included in tables created by
         <command>SELECT INTO</command>. In <productname>PostgreSQL</>
         8.1 <varname>default_with_oids</> is disabled by default; in
-        prior versions of PostgreSQL, it was on by default.
+        prior versions of <productname>PostgreSQL</productname>, it
+        was on by default.
        </para>
 
        <para>
index f308f2eae598a0f2ae8209b394467f5de76cc4ea..9ded5b42140a336e296e9c1b977ea10d84fbe826 100644 (file)
@@ -1770,7 +1770,7 @@ January 8 04:05:06 1999 PST
       literals be explicitly typed:
       <programlisting>TIMESTAMP WITH TIME ZONE '2004-10-19 10:23:54+02'</programlisting>
       If a literal is not explicitly indicated as being of <type>timestamp with time zone</type>,
-      PostgreSQL will silently ignore any time zone indication in the literal.
+      <productname>PostgreSQL</productname> will silently ignore any time zone indication in the literal.
       That is, the resulting date/time value is derived from the date/time
       fields in the input value, and is not adjusted for time zone.
      </para>
index 51be470bba975c5ca34926b83a55f57ab5b978b7..107ae89a7cb34ed6342e9ec39cececb5b452aa2e 100644 (file)
@@ -132,7 +132,7 @@ ALTER SEQUENCE <replaceable class="parameter">name</replaceable> SET SCHEMA <rep
      </varlistentry>
 
      <varlistentry>
-      <term>CYCLE</term>
+      <term><literal>CYCLE</literal></term>
       <listitem>
        <para>
         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
      </varlistentry>
 
      <varlistentry>
-      <term>NO CYCLE</term>
+      <term><literal>NO CYCLE</literal></term>
       <listitem>
        <para>
         If the optional <literal>NO CYCLE</literal> key word is
@@ -197,7 +197,7 @@ ALTER SEQUENCE serial RESTART WITH 105;
 
   <para>
    <command>ALTER SEQUENCE</command> will not immediately affect
-   <literal>nextval</> results in backends,
+   <function>nextval</> results in backends,
    other than the current one, that have preallocated (cached) sequence
    values. They will use up all cached values prior to noticing the changed
    sequence parameters.  The current backend will be affected immediately.