rename handler::ha_set_lock_type() -> handler::set_lock_type(),

because it's not a handler convenience wrapper
This commit is contained in:
Sergei Golubchik 2014-04-28 11:11:16 +02:00
commit 0e05dc81b3
5 changed files with 6 additions and 6 deletions

View file

@ -1714,9 +1714,9 @@ my_bool ha_myisammrg::register_query_cache_dependant_tables(THD *thd
}
void ha_myisammrg::ha_set_lock_type(enum thr_lock_type lock)
void ha_myisammrg::set_lock_type(enum thr_lock_type lock)
{
handler::ha_set_lock_type(lock);
handler::set_lock_type(lock);
if (children_l != NULL)
{
for (TABLE_LIST *child_table= children_l;;

View file

@ -155,5 +155,5 @@ public:
Query_cache *cache,
Query_cache_block_table **block,
uint *n);
virtual void ha_set_lock_type(enum thr_lock_type lock);
virtual void set_lock_type(enum thr_lock_type lock);
};