pgsql: Remove inbound links to sql-createuser

From: Stephen Frost <sfrost(at)snowman(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Remove inbound links to sql-createuser
Date: 2017-10-31 18:05:23
Message-ID: E1e9auh-0003SU-Aa@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove inbound links to sql-createuser

CREATE USER is an alias for CREATE ROLE, not its own command any longer,
so clean up references to the 'sql-createuser' link to go to
'sql-createrole' instead.

In passing, change a few cases of 'CREATE USER' to be
'CREATE ROLE ... LOGIN'. The remaining cases appear reasonable and
also mention the distinction between 'CREATE ROLE' and 'CREATE USER'.
Also, don't say CREATE USER "assumes" LOGIN, but rather "includes".

Patch-by: David G. Johnston, with assumes->includes by me.
Discussion: https://postgr.es/m/CAKFQuwYrbhKV8hH4TEABrDRBwf=gKremF=mLPQ6X2yGqxgFpYA@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/0fe2780db4876cb38f9f914c855a54db7c141e2f

Modified Files
--------------
doc/src/sgml/client-auth.sgml | 4 ++--
doc/src/sgml/ref/create_database.sgml | 2 +-
doc/src/sgml/user-manag.sgml | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Meskes 2017-11-01 12:41:33 pgsql: Make sure ecpglib does accepts digits behind decimal point even
Previous Message Tom Lane 2017-10-31 17:40:29 pgsql: Fix underqualified cast-target type names in pg_dump and psql qu