Commit 45fb058a authored by unknown's avatar unknown

Merge bk-internal.mysql.com:/home/bk/mysql-5.1-runtime

into  moksha.com.br:/Users/davi/mysql/mysql-5.1-runtime
parents fba72eb8 5ba4f7e3
...@@ -466,6 +466,12 @@ bool mysql_ha_read(THD *thd, TABLE_LIST *tables, ...@@ -466,6 +466,12 @@ bool mysql_ha_read(THD *thd, TABLE_LIST *tables,
{ {
mysql_ha_close_table(thd, tables); mysql_ha_close_table(thd, tables);
hash_tables->table= NULL; hash_tables->table= NULL;
/*
The lock might have been aborted, we need to manually reset
thd->some_tables_deleted because handler's tables are closed
in a non-standard way. Otherwise we might loop indefinitely.
*/
thd->some_tables_deleted= 0;
goto retry; goto retry;
} }
......
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