aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2011-05-02 13:40:24 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2011-05-02 13:40:24 -0300
commit52897e54db1000f2fa45b31e02eb252dd0573516 (patch)
tree6dec8e95edf0ad09f8d0589cf0749bb41f385cab
parent4b08bf8ce7a7515f669ce0a1ce1946c6492b65ed (diff)
downloadpostgresql-52897e54db1000f2fa45b31e02eb252dd0573516.tar.gz
postgresql-52897e54db1000f2fa45b31e02eb252dd0573516.zip
Update some ALTER USER cross-references to ALTER ROLE
Greg Smith
-rw-r--r--doc/src/sgml/client-auth.sgml2
-rw-r--r--doc/src/sgml/config.sgml6
-rw-r--r--doc/src/sgml/libpq.sgml2
3 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/sgml/client-auth.sgml b/doc/src/sgml/client-auth.sgml
index afbd9feb37c..cb577e6112a 100644
--- a/doc/src/sgml/client-auth.sgml
+++ b/doc/src/sgml/client-auth.sgml
@@ -889,7 +889,7 @@ omicron bryanh guest1
each database user is stored in the <literal>pg_authid</> system
catalog. Passwords can be managed with the SQL commands
<xref linkend="sql-createuser"> and
- <xref linkend="sql-alteruser">,
+ <xref linkend="sql-alterrole">,
e.g., <userinput>CREATE USER foo WITH PASSWORD 'secret'</userinput>.
If no password has been set up for a user, the stored password
is null and password authentication will always fail for that user.
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index e9de964a65f..d48f2c35bc3 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -135,7 +135,7 @@ env PGOPTIONS='-c geqo=off' psql
Furthermore, it is possible to assign a set of parameter settings to
a user or a database. Whenever a session is started, the default
settings for the user and database involved are loaded. The
- commands <xref linkend="sql-alteruser">
+ commands <xref linkend="sql-alterrole">
and <xref linkend="sql-alterdatabase">,
respectively, are used to configure these settings. Per-database
settings override anything received from the
@@ -705,7 +705,7 @@ SET ENABLE_SEQSCAN TO OFF;
<para>
When a password is specified in <xref
linkend="sql-createuser"> or
- <xref linkend="sql-alteruser">
+ <xref linkend="sql-alterrole">
without writing either <literal>ENCRYPTED</> or
<literal>UNENCRYPTED</>, this parameter determines whether the
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'
libraries to be loaded into specific sessions without an explicit
<command>LOAD</> command being given. For example, debugging could
be enabled for all sessions under a given user name by setting
- this parameter with <command>ALTER USER SET</>.
+ this parameter with <command>ALTER ROLE SET</>.
</para>
<para>
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml
index 2ba441aa36f..19eb9447e8d 100644
--- a/doc/src/sgml/libpq.sgml
+++ b/doc/src/sgml/libpq.sgml
@@ -6387,7 +6387,7 @@ myEventProc(PGEventId evtId, void *evtInfo, void *passThrough)
<para>
The following environment variables can be used to specify default
behavior for each <productname>PostgreSQL</productname> session. (See
- also the <xref linkend="sql-alteruser">
+ also the <xref linkend="sql-alterrole">
and <xref linkend="sql-alterdatabase">
commands for ways to set default behavior on a per-user or per-database
basis.)