From: Tom Lane Date: Thu, 18 Jul 2002 15:49:08 +0000 (+0000) Subject: Fix copy-and-pasteo (CASCADE/RESTRICT in wrong place). X-Git-Tag: REL7_3~1164 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8bed350c4ae6a5b4e7c1bd73b67ca4014960876b;p=postgresql Fix copy-and-pasteo (CASCADE/RESTRICT in wrong place). --- diff --git a/doc/src/sgml/ref/drop_sequence.sgml b/doc/src/sgml/ref/drop_sequence.sgml index 5062384934..eafeb6ddac 100644 --- 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. - - -