diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2023-03-17 21:39:44 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2023-03-17 21:40:25 +0100 |
commit | cc1392d4aa5206d6b4dcc1b036f7a001bcac4197 (patch) | |
tree | 15ff4bd5c292ad12e703f3b5817a1cd71c770628 | |
parent | f413941f41d370a7893caa3e6ed384b89a0577fd (diff) | |
download | postgresql-cc1392d4aa5206d6b4dcc1b036f7a001bcac4197.tar.gz postgresql-cc1392d4aa5206d6b4dcc1b036f7a001bcac4197.zip |
Fix typo
Introduced in de4d456b40.
Reported-by: Erik Rijkers <er@xs4all.nl>
-rw-r--r-- | src/backend/commands/user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/user.c b/src/backend/commands/user.c index 52796e95487..707114bdd06 100644 --- a/src/backend/commands/user.c +++ b/src/backend/commands/user.c @@ -1043,7 +1043,7 @@ AlterRoleSet(AlterRoleSetStmt *stmt) (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE), errmsg("permission denied to alter role"), errdetail("Only roles with the %s attribute and the %s option on role \"%s\" may alter this role.", - "CREATROLE", "ADMIN", NameStr(roleform->rolname)))); + "CREATEROLE", "ADMIN", NameStr(roleform->rolname)))); } ReleaseSysCache(roletuple); |