1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-03 22:24:49 +03:00

doc: Correct ALTER USER MAPPING example

The existing example threw an error.

From: gabrielle <gorthx@gmail.com>
This commit is contained in:
Peter Eisentraut 2016-09-20 12:00:00 -04:00
parent 90c9648212
commit 4f6494cfd2

View File

@ -91,7 +91,7 @@ ALTER USER MAPPING FOR { <replaceable class="parameter">user_name</replaceable>
<para> <para>
Change the password for user mapping <literal>bob</>, server <literal>foo</>: Change the password for user mapping <literal>bob</>, server <literal>foo</>:
<programlisting> <programlisting>
ALTER USER MAPPING FOR bob SERVER foo OPTIONS (user 'bob', password 'public'); ALTER USER MAPPING FOR bob SERVER foo OPTIONS (SET password 'public');
</programlisting></para> </programlisting></para>
</refsect1> </refsect1>