diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-04-28 11:11:16 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-04-28 11:11:16 +0200 |
commit | 0e05dc81b3ff42bacb03eb6826ae75876bef2025 (patch) | |
tree | 09c6cbcea9c20faed4ab6713c820421728452727 /sql/sql_update.cc | |
parent | 84d13a7e882ab9af911ee43d2a6363a8301b3fac (diff) | |
download | mariadb-git-0e05dc81b3ff42bacb03eb6826ae75876bef2025.tar.gz |
rename handler::ha_set_lock_type() -> handler::set_lock_type(),
because it's not a handler convenience wrapper
Diffstat (limited to 'sql/sql_update.cc')
-rw-r--r-- | sql/sql_update.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_update.cc b/sql/sql_update.cc index 190e2e9a84d..b60f21ca9d5 100644 --- a/sql/sql_update.cc +++ b/sql/sql_update.cc @@ -1304,7 +1304,7 @@ int mysql_multi_update_prepare(THD *thd) tl->updating= 0; /* Update TABLE::lock_type accordingly. */ if (!tl->placeholder() && !using_lock_tables) - tl->table->file->ha_set_lock_type(tl->lock_type); + tl->table->file->set_lock_type(tl->lock_type); } } for (tl= table_list; tl; tl= tl->next_local) |