summaryrefslogtreecommitdiff
path: root/sql/handler.h
diff options
context:
space:
mode:
authorunknown <brian@zim.(none)>2006-10-31 20:10:32 -0800
committerunknown <brian@zim.(none)>2006-10-31 20:10:32 -0800
commitb014bd22e40c87fdb7d17772edaa990ccad554b3 (patch)
tree4f858c6e222d7e18d7d5f41edcc2dca83b4185cd /sql/handler.h
parent78fd640b8b5385bb00cab65d880ef8d4c4202732 (diff)
downloadmariadb-git-b014bd22e40c87fdb7d17772edaa990ccad554b3.tar.gz
Adding in an ha_end() call. This is the first part of the patch I and Monty have agreed on. In the future engines will have the option of shutting down more quickly via the panic call, or just shutting down during the unloading of a plugin.
sql/handler.cc: Adding ha_end sql/handler.h: Function declaration for ha_end() sql/mysqld.cc: Adding ha_end call.
Diffstat (limited to 'sql/handler.h')
-rw-r--r--sql/handler.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/handler.h b/sql/handler.h
index 5e26d9c7b63..56c34b8b75e 100644
--- a/sql/handler.h
+++ b/sql/handler.h
@@ -1654,6 +1654,7 @@ static inline bool ha_storage_engine_is_enabled(const handlerton *db_type)
/* basic stuff */
int ha_init(void);
+int ha_end(void);
int ha_initialize_handlerton(st_plugin_int *plugin);
int ha_finalize_handlerton(st_plugin_int *plugin);