Add the corresponding pointers present in the mapping to the entries in acl_users and acl_roles */
| 4031 | acl_users and acl_roles |
| 4032 | */ |
| 4033 | static bool add_role_user_mapping(ACL_USER_BASE *grantee, ACL_ROLE *role) |
| 4034 | { |
| 4035 | return push_dynamic(&grantee->role_grants, (uchar*) &role) |
| 4036 | || push_dynamic(&role->parent_grantee, (uchar*) &grantee); |
| 4037 | |
| 4038 | } |
| 4039 | |
| 4040 | /* |
| 4041 | Revert the last add_role_user_mapping() action |
no test coverage detected