pgsql: Fix permissions explanations in CREATE DATABASE and CREATE SCHEM - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Fix permissions explanations in CREATE DATABASE and CREATE SCHEM
Date
Msg-id E1TJpQc-0000kT-F9@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix permissions explanations in CREATE DATABASE and CREATE SCHEMA docs.

These reference pages still claimed that you have to be superuser to create
a database or schema owned by a different role.  That was true before 8.1,
but it was changed in commits aa1110624c08298393dfce996f7b21809d98d3fd and
f91370cd2faf1fd35a1ac74d84652a85ed841919 to allow assignment of ownership
to any role you are a member of.  However, at the time we were thinking of
that primarily as a change to the ALTER OWNER rules, so the need to touch
these two CREATE ref pages got missed.

Branch
------
REL9_0_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/0f6d0119f2b3e0957c67e6cb5ec84e669718bd27

Modified Files
--------------
doc/src/sgml/ref/create_database.sgml |   16 +++++-----------
doc/src/sgml/ref/create_schema.sgml   |   13 ++++++++-----
2 files changed, 13 insertions(+), 16 deletions(-)


pgsql-committers by date:

Previous
From: Heikki Linnakangas
Date:
Subject: pgsql: Fix typo in comment, and reword it slightly while we're at it.
Next
From: Tom Lane
Date:
Subject: pgsql: Fix permissions explanations in CREATE DATABASE and CREATE SCHEM