summaryrefslogtreecommitdiff
path: root/sql/lock.cc
diff options
context:
space:
mode:
authormonty@donna.mysql.com <>2001-02-18 00:03:37 +0200
committermonty@donna.mysql.com <>2001-02-18 00:03:37 +0200
commitd218ebcc51f0016801fa61baea01190ca77062fd (patch)
treee430180603a3dd86bed056e15a90ce368911ca5a /sql/lock.cc
parentece13efde985355d0eb1df8875eabe3fd75cf007 (diff)
downloadmariadb-git-d218ebcc51f0016801fa61baea01190ca77062fd.tar.gz
Added locks needed for Innobase
Fixed mutex problem when doing automatic repair of MyISAM tables
Diffstat (limited to 'sql/lock.cc')
-rw-r--r--sql/lock.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/lock.cc b/sql/lock.cc
index c85983b65d6..915f1831245 100644
--- a/sql/lock.cc
+++ b/sql/lock.cc
@@ -446,7 +446,10 @@ int lock_table_name(THD *thd, TABLE_LIST *table_list)
void unlock_table_name(THD *thd, TABLE_LIST *table_list)
{
if (table_list->table)
+ {
hash_delete(&open_cache, (byte*) table_list->table);
+ (void) pthread_cond_broadcast(&COND_refresh);
+ }
}
static bool locked_named_table(THD *thd, TABLE_LIST *table_list)