diff options
author | Neil Conway <neilc@samurai.com> | 2006-09-18 21:19:29 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2006-09-18 21:19:29 +0000 |
commit | ecf5009099a5159096e66ed29907421180729d32 (patch) | |
tree | 98ac09b950c7f4a5247eb62183414139f3aa2889 | |
parent | b5b1eb80b70222231946db363d87a7077ece6a64 (diff) | |
download | postgresql-ecf5009099a5159096e66ed29907421180729d32.tar.gz postgresql-ecf5009099a5159096e66ed29907421180729d32.zip |
Make the order of the CASCADE and RESTRICT keywords in the DROP OWNED
syntax summary consistent with the other SQL reference pages. Patch
from Euler Taveira de Oliveira.
-rw-r--r-- | doc/src/sgml/ref/drop_owned.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/drop_owned.sgml b/doc/src/sgml/ref/drop_owned.sgml index 146571cd27b..fbf101532ff 100644 --- a/doc/src/sgml/ref/drop_owned.sgml +++ b/doc/src/sgml/ref/drop_owned.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/drop_owned.sgml,v 1.3 2006/09/16 00:30:18 momjian Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/drop_owned.sgml,v 1.4 2006/09/18 21:19:29 neilc Exp $ PostgreSQL documentation --> @@ -20,7 +20,7 @@ PostgreSQL documentation <refsynopsisdiv> <synopsis> -DROP OWNED BY <replaceable class="PARAMETER">name</replaceable> [, ...] [ RESTRICT | CASCADE ] +DROP OWNED BY <replaceable class="PARAMETER">name</replaceable> [, ...] [ CASCADE | RESTRICT ] </synopsis> </refsynopsisdiv> |