Commit 2fd0a665 authored by bell@sanja.is.com.ua's avatar bell@sanja.is.com.ua

fixed db name and layout (can cause very rare race condition bug)

parent d6f9fa03
...@@ -2141,9 +2141,9 @@ bool check_grant_column(THD *thd,TABLE *table, const char *name, ...@@ -2141,9 +2141,9 @@ bool check_grant_column(THD *thd,TABLE *table, const char *name,
if (table->grant.version != grant_version) if (table->grant.version != grant_version)
{ {
table->grant.grant_table= table->grant.grant_table=
table_hash_search(thd->host,thd->ip,thd->db, table_hash_search(thd->host, thd->ip, table->table_cache_key,
thd->priv_user, thd->priv_user,
table->real_name,0); /* purecov: inspected */ table->real_name, 0); /* purecov: inspected */
table->grant.version=grant_version; /* purecov: inspected */ table->grant.version=grant_version; /* purecov: inspected */
} }
if (!(grant_table=table->grant.grant_table)) if (!(grant_table=table->grant.grant_table))
......
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