summaryrefslogtreecommitdiff
path: root/sql/ha_innodb.cc
diff options
context:
space:
mode:
authorunknown <brian@zim.(none)>2006-03-26 01:32:52 -0800
committerunknown <brian@zim.(none)>2006-03-26 01:32:52 -0800
commit56e8814b773de157dba01417c963d40a55f2cd4f (patch)
treed2ff3c315ef571a52f19d5b399f459f314ae87fd /sql/ha_innodb.cc
parent89822edbd5fb010a17e7e856219c0764b65224ea (diff)
downloadmariadb-git-56e8814b773de157dba01417c963d40a55f2cd4f.tar.gz
Fix to remove engine dependency from handler.cc file, the last one for functions.
sql/ha_innodb.cc: Added new function to handlerton. sql/handler.cc: Removed Innodb dependency (last remaining function call). sql/handler.h: Added additional function for engines who need to know about client communication.
Diffstat (limited to 'sql/ha_innodb.cc')
-rw-r--r--sql/ha_innodb.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/ha_innodb.cc b/sql/ha_innodb.cc
index bf07d56565a..1b0f4c34acc 100644
--- a/sql/ha_innodb.cc
+++ b/sql/ha_innodb.cc
@@ -237,7 +237,8 @@ handlerton innobase_hton = {
NULL, /* Fill FILES table */
HTON_NO_FLAGS,
NULL, /* binlog_func */
- NULL /* binlog_log_query */
+ NULL, /* binlog_log_query */
+ innobase_release_temporary_latches
};