Skip to content

Commit 8bed350

Browse files
committed
Fix copy-and-pasteo (CASCADE/RESTRICT in wrong place).
1 parent 55fa0e6 commit 8bed350

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

doc/src/sgml/ref/drop_sequence.sgml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_sequence.sgml,v 1.15 2002/07/12 18:43:13 tgl Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/ref/drop_sequence.sgml,v 1.16 2002/07/18 15:49:08 tgl Exp $
33
PostgreSQL documentation
44
-->
55

@@ -42,6 +42,23 @@ DROP SEQUENCE <replaceable class="PARAMETER">name</replaceable> [, ...] [ CASCAD
4242
</para>
4343
</listitem>
4444
</varlistentry>
45+
<varlistentry>
46+
<term>CASCADE</term>
47+
<listitem>
48+
<para>
49+
Automatically drop objects that depend on the sequence.
50+
</para>
51+
</listitem>
52+
</varlistentry>
53+
<varlistentry>
54+
<term>RESTRICT</term>
55+
<listitem>
56+
<para>
57+
Refuse to drop the sequence if there are any dependent objects.
58+
This is the default.
59+
</para>
60+
</listitem>
61+
</varlistentry>
4562
</variablelist>
4663
</para>
4764
</refsect2>
@@ -76,23 +93,6 @@ ERROR: sequence "<replaceable class="parameter">name</replaceable>" does not exi
7693
</para>
7794
</listitem>
7895
</varlistentry>
79-
<varlistentry>
80-
<term>CASCADE</term>
81-
<listitem>
82-
<para>
83-
Automatically drop objects that depend on the sequence.
84-
</para>
85-
</listitem>
86-
</varlistentry>
87-
<varlistentry>
88-
<term>RESTRICT</term>
89-
<listitem>
90-
<para>
91-
Refuse to drop the sequence if there are any dependent objects.
92-
This is the default.
93-
</para>
94-
</listitem>
95-
</varlistentry>
9696
</variablelist>
9797

9898
</para>

0 commit comments

Comments
 (0)