You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am running into the exact same issue. Your fix works for me.
I wonder what the purpose of these lines actually is:
err=azpg.pg.GrantRole(newOwner, azpg.user)
iferr!=nil&&err.(*pq.Error).Code!="0LP01" {
iferr.(*pq.Error).Code=="42704" {
// The group role does not exist, no point of granting roleslogger.Info(fmt.Sprintf("not granting %s to %s as %s does not exist", role, newOwner, newOwner))
returnnil
}
returnerr
}
In all my tests, the value of newOwner and azpg.user were identical, so there was no really a point in doing this role assignment (which fails on pg 16).
In the latest version + azure postgres 16 + admin being the privileged azure db user.
When we try to drop the database when the CRD is deleted you get
permission denied to grant role "admin"
after some investigation this happens because we try to
GRANT admin to admin;
Only roles with the ADMIN option on role "admin" may grant this role.
The text was updated successfully, but these errors were encountered: