]> granicus.if.org Git - postgresql/commitdiff
Add missing support for removing foreign data wrapper / server privileges
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Fri, 12 Nov 2010 13:19:14 +0000 (15:19 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Fri, 12 Nov 2010 13:29:23 +0000 (15:29 +0200)
belonging to a user at DROP OWNED BY. Foreign data wrappers and servers
don't do anything useful yet, which is why no-one has noticed, but since we
have them, seems prudent to fix this. Per report from Chetan Suttraway.
Backpatch to 9.0, 8.4 has the same problem but this patch didn't apply
there so I'm not going to bother.

src/backend/catalog/aclchk.c

index fb080e9298ffe4dbae5d243d34d3d4ab2676dd01..fefa335e0982d9fa9839aba406a54279bce5a473 100644 (file)
@@ -1340,6 +1340,12 @@ RemoveRoleFromObjectACL(Oid roleid, Oid classid, Oid objid)
                        case TableSpaceRelationId:
                                istmt.objtype = ACL_OBJECT_TABLESPACE;
                                break;
+                       case ForeignServerRelationId:
+                               istmt.objtype = ACL_OBJECT_FOREIGN_SERVER;
+                               break;
+                       case ForeignDataWrapperRelationId:
+                               istmt.objtype = ACL_OBJECT_FDW;
+                               break;
                        default:
                                elog(ERROR, "unexpected object class %u", classid);
                                break;