projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
55fa0e6
)
Fix copy-and-pasteo (CASCADE/RESTRICT in wrong place).
author
Tom Lane
Thu, 18 Jul 2002 15:49:08 +0000
(15:49 +0000)
committer
Tom Lane
Thu, 18 Jul 2002 15:49:08 +0000
(15:49 +0000)
doc/src/sgml/ref/drop_sequence.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/ref/drop_sequence.sgml
b/doc/src/sgml/ref/drop_sequence.sgml
index 50623849342cce2eec68727550b7c6016a9a7f2a..eafeb6ddac2031b6861dd455da171c0deef8097c 100644
(file)
--- a/
doc/src/sgml/ref/drop_sequence.sgml
+++ b/
doc/src/sgml/ref/drop_sequence.sgml
@@
-1,5
+1,5
@@
@@
-42,6
+42,23
@@
DROP SEQUENCE
name
[, ...] [ CASCAD
+
+
CASCADE
+
+
+ Automatically drop objects that depend on the sequence.
+
+
+
+
+
RESTRICT
+
+
+ Refuse to drop the sequence if there are any dependent objects.
+ This is the default.
+
+
+
@@
-76,23
+93,6
@@
ERROR: sequence "
name
" does not exi
-
-
CASCADE
-
-
- Automatically drop objects that depend on the sequence.
-
-
-
-
-
RESTRICT
-
-
- Refuse to drop the sequence if there are any dependent objects.
- This is the default.
-
-
-