From 8c6147b9114a84644d0fa9a2b49e4e45e471a0d4 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 5 Jan 2005 14:22:39 +0000 Subject: [PATCH] Revert cosmetic synopsis changes that break psql translations. --- doc/src/sgml/ref/alter_database.sgml | 6 +++--- doc/src/sgml/ref/alter_user.sgml | 6 +++--- doc/src/sgml/ref/create_table_as.sgml | 5 ++--- doc/src/sgml/ref/create_user.sgml | 4 ++-- 4 files changed, 10 insertions(+), 11 deletions(-) diff --git a/doc/src/sgml/ref/alter_database.sgml b/doc/src/sgml/ref/alter_database.sgml index 6028706546..c209308716 100644 --- a/doc/src/sgml/ref/alter_database.sgml +++ b/doc/src/sgml/ref/alter_database.sgml @@ -1,5 +1,5 @@ @@ -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 0bf30d9bf9..9ec5925b49 100644 --- a/doc/src/sgml/ref/alter_user.sgml +++ b/doc/src/sgml/ref/alter_user.sgml @@ -1,5 +1,5 @@ @@ -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 a232032bf1..7934230859 100644 --- a/doc/src/sgml/ref/create_table_as.sgml +++ b/doc/src/sgml/ref/create_table_as.sgml @@ -1,5 +1,5 @@ @@ -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 1df1acf2b6..73f88124e8 100644 --- a/doc/src/sgml/ref/create_user.sgml +++ b/doc/src/sgml/ref/create_user.sgml @@ -1,5 +1,5 @@ @@ -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'