From b976fb144407d3fbc892d080fce9bcd3c3922c93 Mon Sep 17 00:00:00 2001 From: Konstantin Osipov Date: Wed, 9 Jun 2010 12:39:09 +0400 Subject: A review comment for WL#4441 " LOCK_open: Remove requirement of mutex protecting thd->open_tables". We should not manipulate with table->s->version outside the table definition cache code, but use the TDC API to achieve the desired result. Fix one violation: close_all_tables_for_name(). --- sql/sql_handler.h | 1 + 1 file changed, 1 insertion(+) (limited to 'sql/sql_handler.h') diff --git a/sql/sql_handler.h b/sql/sql_handler.h index 8666d5a8d7b..c5da3c4d468 100644 --- a/sql/sql_handler.h +++ b/sql/sql_handler.h @@ -28,6 +28,7 @@ bool mysql_ha_close(THD *thd, TABLE_LIST *tables); bool mysql_ha_read(THD *, TABLE_LIST *,enum enum_ha_read_modes,char *, List *,enum ha_rkey_function,Item *,ha_rows,ha_rows); void mysql_ha_flush(THD *thd); +void mysql_ha_flush_tables(THD *thd, TABLE_LIST *all_tables); void mysql_ha_rm_tables(THD *thd, TABLE_LIST *tables); void mysql_ha_cleanup(THD *thd); void mysql_ha_move_tickets_after_trans_sentinel(THD *thd); -- cgit v1.2.1