aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/common/tupdesc.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2012-06-15 22:55:03 +0300
committerPeter Eisentraut <peter_e@gmx.net>2012-06-15 22:55:03 +0300
commit15b1918e7d3532f0e4ec3455ae6ce45fae09c86f (patch)
tree659b8a57116719720c1b59d7d6ad507d72d3c748 /src/backend/access/common/tupdesc.c
parentd933092e0ab55ed95615977e50963f969ac9793d (diff)
downloadpostgresql-15b1918e7d3532f0e4ec3455ae6ce45fae09c86f.tar.gz
postgresql-15b1918e7d3532f0e4ec3455ae6ce45fae09c86f.zip
Improve reporting of permission errors for array types
Because permissions are assigned to element types, not array types, complaining about permission denied on an array type would be misleading to users. So adjust the reporting to refer to the element type instead. In order not to duplicate the required logic in two dozen places, refactor the permission denied reporting for types a bit. pointed out by Yeb Havinga during the review of the type privilege feature
Diffstat (limited to 'src/backend/access/common/tupdesc.c')
-rw-r--r--src/backend/access/common/tupdesc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/access/common/tupdesc.c b/src/backend/access/common/tupdesc.c
index 1f40b7c6604..aa1ce800d40 100644
--- a/src/backend/access/common/tupdesc.c
+++ b/src/backend/access/common/tupdesc.c
@@ -573,8 +573,7 @@ BuildDescForRelation(List *schema)
aclresult = pg_type_aclcheck(atttypid, GetUserId(), ACL_USAGE);
if (aclresult != ACLCHECK_OK)
- aclcheck_error(aclresult, ACL_KIND_TYPE,
- format_type_be(atttypid));
+ aclcheck_error_type(aclresult, atttypid);
attcollation = GetColumnDefCollation(NULL, entry, atttypid);
attdim = list_length(entry->typeName->arrayBounds);