Commit a03ae56e authored by Tom Lane's avatar Tom Lane

Tweak wording in sequence-function docs to avoid PDF build failures.

Adjust the wording in the first para of "Sequence Manipulation Functions"
so that neither of the link phrases in it break across line boundaries,
in either A4- or US-page-size PDF output.  This fixes a reported build
failure for the 9.3beta2 A4 PDF docs, and future-proofs this particular
para against causing similar problems in future.  (Perhaps somebody will
fix this issue in the SGML/TeX documentation tool chain someday, but I'm
not holding my breath.)

Back-patch to all supported branches, since the same problem could rise up
to bite us in future updates if anyone changes anything earlier than this
in func.sgml.
parent 19085116
...@@ -10205,12 +10205,11 @@ table2-mapping ...@@ -10205,12 +10205,11 @@ table2-mapping
</indexterm> </indexterm>
<para> <para>
This section describes <productname>PostgreSQL</productname>'s This section describes functions for operating on <firstterm>sequence
functions for operating on <firstterm>sequence objects</firstterm>. objects</firstterm>, also called sequence generators or just sequences.
Sequence objects (also called sequence generators or just Sequence objects are special single-row tables created with <xref
sequences) are special single-row tables created with <xref
linkend="sql-createsequence">. linkend="sql-createsequence">.
A sequence object is usually used to generate unique identifiers Sequence objects are commonly used to generate unique identifiers
for rows of a table. The sequence functions, listed in <xref for rows of a table. The sequence functions, listed in <xref
linkend="functions-sequence-table">, provide simple, multiuser-safe linkend="functions-sequence-table">, provide simple, multiuser-safe
methods for obtaining successive sequence values from sequence methods for obtaining successive sequence values from sequence
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment