Commit 930ded12 authored by unknown's avatar unknown

Back porting a fix from 4.0 at customer's request

parent a312e137
......@@ -2155,7 +2155,7 @@ check_access(THD *thd,uint want_access,const char *db, uint *save_priv,
if ((thd->master_access & want_access) == want_access)
{
*save_priv=thd->master_access;
*save_priv=thd->master_access | thd->db_access;
return FALSE;
}
if ((want_access & ~thd->master_access) & ~(DB_ACLS | EXTRA_ACL) ||
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment