Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 52897e5

Browse files
committed
Update some ALTER USER cross-references to ALTER ROLE
Greg Smith
1 parent 4b08bf8 commit 52897e5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doc/src/sgml/client-auth.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ omicron bryanh guest1
889889
each database user is stored in the <literal>pg_authid</> system
890890
catalog. Passwords can be managed with the SQL commands
891891
<xref linkend="sql-createuser"> and
892-
<xref linkend="sql-alteruser">,
892+
<xref linkend="sql-alterrole">,
893893
e.g., <userinput>CREATE USER foo WITH PASSWORD 'secret'</userinput>.
894894
If no password has been set up for a user, the stored password
895895
is null and password authentication will always fail for that user.

doc/src/sgml/config.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ env PGOPTIONS='-c geqo=off' psql
135135
Furthermore, it is possible to assign a set of parameter settings to
136136
a user or a database. Whenever a session is started, the default
137137
settings for the user and database involved are loaded. The
138-
commands <xref linkend="sql-alteruser">
138+
commands <xref linkend="sql-alterrole">
139139
and <xref linkend="sql-alterdatabase">,
140140
respectively, are used to configure these settings. Per-database
141141
settings override anything received from the
@@ -705,7 +705,7 @@ SET ENABLE_SEQSCAN TO OFF;
705705
<para>
706706
When a password is specified in <xref
707707
linkend="sql-createuser"> or
708-
<xref linkend="sql-alteruser">
708+
<xref linkend="sql-alterrole">
709709
without writing either <literal>ENCRYPTED</> or
710710
<literal>UNENCRYPTED</>, this parameter determines whether the
711711
password is to be encrypted. The default is <literal>on</>
@@ -5205,7 +5205,7 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
52055205
libraries to be loaded into specific sessions without an explicit
52065206
<command>LOAD</> command being given. For example, debugging could
52075207
be enabled for all sessions under a given user name by setting
5208-
this parameter with <command>ALTER USER SET</>.
5208+
this parameter with <command>ALTER ROLE SET</>.
52095209
</para>
52105210

52115211
<para>

doc/src/sgml/libpq.sgml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6387,7 +6387,7 @@ myEventProc(PGEventId evtId, void *evtInfo, void *passThrough)
63876387
<para>
63886388
The following environment variables can be used to specify default
63896389
behavior for each <productname>PostgreSQL</productname> session. (See
6390-
also the <xref linkend="sql-alteruser">
6390+
also the <xref linkend="sql-alterrole">
63916391
and <xref linkend="sql-alterdatabase">
63926392
commands for ways to set default behavior on a per-user or per-database
63936393
basis.)

0 commit comments

Comments
 (0)