From cc1392d4aa5206d6b4dcc1b036f7a001bcac4197 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 17 Mar 2023 21:39:44 +0100 Subject: [PATCH] Fix typo Introduced in de4d456b40. Reported-by: Erik Rijkers --- src/backend/commands/user.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/commands/user.c b/src/backend/commands/user.c index 52796e9548..707114bdd0 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);