From: Peter Eisentraut Date: Wed, 5 Jan 2005 14:22:39 +0000 (+0000) Subject: Revert cosmetic synopsis changes that break psql translations. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=7c268af7ba6aba1c81c2e8cb65d384fb9cff235e;p=users%2Fbernd%2Fpostgres.git Revert cosmetic synopsis changes that break psql translations. --- diff --git a/doc/src/sgml/ref/alter_database.sgml b/doc/src/sgml/ref/alter_database.sgml index 5454adc96f..a42a067778 100644 --- a/doc/src/sgml/ref/alter_database.sgml +++ b/doc/src/sgml/ref/alter_database.sgml @@ -25,7 +25,7 @@ ALTER DATABASE name RESET name RENAME TO newname -ALTER DATABASE name OWNER TO newowner +ALTER DATABASE name OWNER TO new_owner @@ -110,7 +110,7 @@ ALTER DATABASE name OWNER TO - newowner + new_owner The new owner of the database. diff --git a/doc/src/sgml/ref/alter_user.sgml b/doc/src/sgml/ref/alter_user.sgml index 6a8e9b52b3..cbc5f88785 100644 --- a/doc/src/sgml/ref/alter_user.sgml +++ b/doc/src/sgml/ref/alter_user.sgml @@ -24,9 +24,9 @@ ALTER USER name [ [ WITH ] option can be: - CREATEDB | NOCREATEDB + [ ENCRYPTED | UNENCRYPTED ] PASSWORD 'password' + | CREATEDB | NOCREATEDB | CREATEUSER | NOCREATEUSER - | [ ENCRYPTED | UNENCRYPTED ] PASSWORD 'password' | VALID UNTIL 'abstime' ALTER USER name RENAME TO newname diff --git a/doc/src/sgml/ref/create_table_as.sgml b/doc/src/sgml/ref/create_table_as.sgml index 8b379269dc..db3e6cfb27 100644 --- a/doc/src/sgml/ref/create_table_as.sgml +++ b/doc/src/sgml/ref/create_table_as.sgml @@ -20,8 +20,7 @@ PostgreSQL documentation -CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE table_name - [ (column_name [, ...] ) ] [ [ WITH | WITHOUT ] OIDS ] +CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE table_name [ (column_name [, ...] ) ] [ [ WITH | WITHOUT ] OIDS ] AS query diff --git a/doc/src/sgml/ref/create_user.sgml b/doc/src/sgml/ref/create_user.sgml index 5aaf463d1d..6a093a22a3 100644 --- a/doc/src/sgml/ref/create_user.sgml +++ b/doc/src/sgml/ref/create_user.sgml @@ -25,10 +25,10 @@ CREATE USER name [ [ WITH ] option can be: SYSID uid + | [ ENCRYPTED | UNENCRYPTED ] PASSWORD 'password' | CREATEDB | NOCREATEDB | CREATEUSER | NOCREATEUSER | IN GROUP groupname [, ...] - | [ ENCRYPTED | UNENCRYPTED ] PASSWORD 'password' | VALID UNTIL 'abstime'