mirror of
https://github.com/postgres/postgres.git
synced 2025-08-28 18:48:04 +03:00
Don't use SGML empty tags
For DocBook XML compatibility, don't use SGML empty tags (</>) anymore, replace by the full tag name. Add a warning option to catch future occurrences. Alexander Lakhin, Jürgen Purtz
This commit is contained in:
@@ -38,7 +38,7 @@ ALTER USER MAPPING FOR { <replaceable class="parameter">user_name</replaceable>
|
||||
<para>
|
||||
The owner of a foreign server can alter user mappings for that
|
||||
server for any user. Also, a user can alter a user mapping for
|
||||
their own user name if <literal>USAGE</> privilege on the server has
|
||||
their own user name if <literal>USAGE</literal> privilege on the server has
|
||||
been granted to the user.
|
||||
</para>
|
||||
</refsect1>
|
||||
@@ -51,9 +51,9 @@ ALTER USER MAPPING FOR { <replaceable class="parameter">user_name</replaceable>
|
||||
<term><replaceable class="parameter">user_name</replaceable></term>
|
||||
<listitem>
|
||||
<para>
|
||||
User name of the mapping. <literal>CURRENT_USER</>
|
||||
and <literal>USER</> match the name of the current
|
||||
user. <literal>PUBLIC</> is used to match all present and future
|
||||
User name of the mapping. <literal>CURRENT_USER</literal>
|
||||
and <literal>USER</literal> match the name of the current
|
||||
user. <literal>PUBLIC</literal> is used to match all present and future
|
||||
user names in the system.
|
||||
</para>
|
||||
</listitem>
|
||||
@@ -74,8 +74,8 @@ ALTER USER MAPPING FOR { <replaceable class="parameter">user_name</replaceable>
|
||||
<para>
|
||||
Change options for the user mapping. The new options override
|
||||
any previously specified
|
||||
options. <literal>ADD</>, <literal>SET</>, and <literal>DROP</>
|
||||
specify the action to be performed. <literal>ADD</> is assumed
|
||||
options. <literal>ADD</literal>, <literal>SET</literal>, and <literal>DROP</literal>
|
||||
specify the action to be performed. <literal>ADD</literal> is assumed
|
||||
if no operation is explicitly specified. Option names must be
|
||||
unique; options are also validated by the server's foreign-data
|
||||
wrapper.
|
||||
@@ -89,7 +89,7 @@ ALTER USER MAPPING FOR { <replaceable class="parameter">user_name</replaceable>
|
||||
<title>Examples</title>
|
||||
|
||||
<para>
|
||||
Change the password for user mapping <literal>bob</>, server <literal>foo</>:
|
||||
Change the password for user mapping <literal>bob</literal>, server <literal>foo</literal>:
|
||||
<programlisting>
|
||||
ALTER USER MAPPING FOR bob SERVER foo OPTIONS (SET password 'public');
|
||||
</programlisting></para>
|
||||
|
Reference in New Issue
Block a user