mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
rename handler::ha_set_lock_type() -> handler::set_lock_type(),
because it's not a handler convenience wrapper
This commit is contained in:
parent
84d13a7e88
commit
0e05dc81b3
5 changed files with 6 additions and 6 deletions
|
|
@ -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;;
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue