diff options
author | Sergei Golubchik <serg@mariadb.org> | 2020-04-19 19:47:31 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2020-05-05 19:41:12 +0200 |
commit | 67aaf51cf9ef95180702ca9ae6275631bb40e7c7 (patch) | |
tree | 23b2f7e61d9d8b9a7922bc34a4e77875be7700f4 /sql/handler.h | |
parent | f29287d28026747472862bdcde0afdc31084a15a (diff) | |
download | mariadb-git-67aaf51cf9ef95180702ca9ae6275631bb40e7c7.tar.gz |
cleanup: ha_external_unlock() helper
as mentioned in f9f33b85be6 and generally to make it
easier to talk about
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/handler.h b/sql/handler.h index 0fa492a2a6f..afad986c883 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -3381,6 +3381,7 @@ public: and delete_row() below. */ int ha_external_lock(THD *thd, int lock_type); + int ha_external_unlock(THD *thd) { return ha_external_lock(thd, F_UNLCK); } int ha_write_row(const uchar * buf); int ha_update_row(const uchar * old_data, const uchar * new_data); int ha_delete_row(const uchar * buf); |