summaryrefslogtreecommitdiff
path: root/doc/src/sgml/ref/create_sequence.sgml
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2001-09-13 15:55:24 +0000
committerPeter Eisentraut <peter_e@gmx.net>2001-09-13 15:55:24 +0000
commit351a0c1736b8aaff7638cce122191e2815b8ea84 (patch)
tree03fe0ab0e9f91f5dc17f62a895d0a6ef61064079 /doc/src/sgml/ref/create_sequence.sgml
parent9f990a73c13a17faf87417eee9e17faabfa00179 (diff)
Replace ASCII-quotes with proper markup.
Diffstat (limited to 'doc/src/sgml/ref/create_sequence.sgml')
-rw-r--r--doc/src/sgml/ref/create_sequence.sgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/create_sequence.sgml b/doc/src/sgml/ref/create_sequence.sgml
index ec44b35f1ab..953ca916849 100644
--- a/doc/src/sgml/ref/create_sequence.sgml
+++ b/doc/src/sgml/ref/create_sequence.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_sequence.sgml,v 1.19 2001/09/03 12:57:49 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_sequence.sgml,v 1.20 2001/09/13 15:55:24 petere Exp $
Postgres documentation
-->
@@ -270,7 +270,7 @@ SELECT last_value FROM <replaceable>seqname</replaceable>;
that obtain numbers from the same sequence, a nextval operation
is never rolled back; that is, once a value has been fetched it is
considered used, even if the transaction that did the nextval later
- aborts. This means that aborted transactions may leave unused "holes"
+ aborts. This means that aborted transactions may leave unused <quote>holes</quote>
in the sequence of assigned values. setval operations are never
rolled back, either.
</para>
@@ -315,7 +315,7 @@ SELECT last_value FROM <replaceable>seqname</replaceable>;
<para>
Each backend uses its own cache to store preallocated numbers.
Numbers that are cached but not used in the current session will be
- lost, resulting in "holes" in the sequence.
+ lost, resulting in <quote>holes</quote> in the sequence.
</para>
</refsect2>
</refsect1>