1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

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.
This commit is contained in:
unknown
2006-03-26 01:32:52 -08:00
parent 89822edbd5
commit 56e8814b77
3 changed files with 20 additions and 4 deletions

View File

@@ -580,6 +580,7 @@ typedef struct
void (*binlog_log_query)(THD *thd, enum_binlog_command binlog_command,
const char *query, uint query_length,
const char *db, const char *table_name);
int (*release_temporary_latches)(THD *thd);
} handlerton;
extern const handlerton default_hton;