Commit a0dc23f2 authored by Robert Haas's avatar Robert Haas

Fix incorrect error message when schema-CREATE permission is absent.

Report by me.  Fix by KaiGai Kohei.
parent cf03ff6c
...@@ -632,7 +632,7 @@ AlterObjectOwner_internal(Relation rel, Oid objectId, Oid new_ownerId) ...@@ -632,7 +632,7 @@ AlterObjectOwner_internal(Relation rel, Oid objectId, Oid new_ownerId)
aclresult = pg_namespace_aclcheck(namespaceId, new_ownerId, aclresult = pg_namespace_aclcheck(namespaceId, new_ownerId,
ACL_CREATE); ACL_CREATE);
if (aclresult != ACLCHECK_OK) if (aclresult != ACLCHECK_OK)
aclcheck_error(aclresult, aclkind, aclcheck_error(aclresult, ACL_KIND_NAMESPACE,
get_namespace_name(namespaceId)); get_namespace_name(namespaceId));
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment