mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-30 19:00:29 +08:00
Fix use of incorrect constant RemoveRoleFromObjectACL.
This could cause failures when DROP OWNED BY attempt to remove default privileges on sequences. Back-patching to 9.0. Shigeru Hanada
This commit is contained in:
parent
0babcdf6cf
commit
8ede427938
@ -1299,7 +1299,7 @@ RemoveRoleFromObjectACL(Oid roleid, Oid classid, Oid objid)
|
||||
case DEFACLOBJ_RELATION:
|
||||
iacls.objtype = ACL_OBJECT_RELATION;
|
||||
break;
|
||||
case ACL_OBJECT_SEQUENCE:
|
||||
case DEFACLOBJ_SEQUENCE:
|
||||
iacls.objtype = ACL_OBJECT_SEQUENCE;
|
||||
break;
|
||||
case DEFACLOBJ_FUNCTION:
|
||||
|
Loading…
Reference in New Issue
Block a user