diff options
Diffstat (limited to 'src/backend/commands/policy.c')
-rw-r--r-- | src/backend/commands/policy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/policy.c b/src/backend/commands/policy.c index 8851fe7c9ff..6399b2e3eb7 100644 --- a/src/backend/commands/policy.c +++ b/src/backend/commands/policy.c @@ -167,8 +167,8 @@ policy_role_list_to_array(List *roles, int *num_roles) { ereport(WARNING, (errcode(ERRCODE_INVALID_PARAMETER_VALUE), - errmsg("ignoring roles specified other than public"), - errhint("All roles are members of the public role."))); + errmsg("ignoring specified roles other than PUBLIC"), + errhint("All roles are members of the PUBLIC role."))); *num_roles = 1; } role_oids[0] = ObjectIdGetDatum(ACL_ID_PUBLIC); |