diff --git a/doc/src/sgml/ref/alter_user_mapping.sgml b/doc/src/sgml/ref/alter_user_mapping.sgml new file mode 100644 index 3245f83..dce5ba4 *** a/doc/src/sgml/ref/alter_user_mapping.sgml --- b/doc/src/sgml/ref/alter_user_mapping.sgml *************** ALTER USER MAPPING FOR { Examples Change the password for user mapping bob, server foo: ! ALTER USER MAPPING FOR bob SERVER foo OPTIONS (user 'bob', password 'public'); --- 89,103 ---- Examples + Add a password for user mapping bob, server foo: + + ALTER USER MAPPING FOR bob SERVER foo OPTIONS (ADD password 'public'); + + + Change the password for user mapping bob, server foo: ! ALTER USER MAPPING FOR bob SERVER foo OPTIONS (SET password 'public');