From dfddf931707bfc9724179b0f554649dabccf45aa Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Tue, 20 Sep 2016 12:00:00 -0400 Subject: [PATCH] doc: Correct ALTER USER MAPPING example The existing example threw an error. From: gabrielle --- doc/src/sgml/ref/alter_user_mapping.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/ref/alter_user_mapping.sgml b/doc/src/sgml/ref/alter_user_mapping.sgml index 3a908130d8..3be54afee5 100644 --- a/doc/src/sgml/ref/alter_user_mapping.sgml +++ b/doc/src/sgml/ref/alter_user_mapping.sgml @@ -89,9 +89,9 @@ ALTER USER MAPPING FOR { user_name Examples - Change the password for user mapping bob, server foo: + Change the password for user mapping bob, server foo: -ALTER USER MAPPING FOR bob SERVER foo OPTIONS (user 'bob', password 'public'); +ALTER USER MAPPING FOR bob SERVER foo OPTIONS (SET password 'public'); -- 2.40.0