1
0
mirror of https://github.com/MariaDB/server.git synced 2025-10-12 12:25:37 +03:00

This pulls two function calls which should have been handlerton calls out of handler.cc.

This commit is contained in:
brian@zim.(none)
2006-08-30 12:28:25 -07:00
parent 5c3ac45ca4
commit 7ae3682dc8
3 changed files with 58 additions and 14 deletions

View File

@@ -668,7 +668,11 @@ struct handlerton
(*create_iterator)(enum handler_iterator_type type,
struct handler_iterator *fill_this_in);
int (*discover)(THD* thd, const char *db, const char *name,
const void** frmblob, uint* frmlen);
const void** frmblob, uint* frmlen);
int (*find_files)(THD *thd,const char *db,const char *path,
const char *wild, bool dir, List<char> *files);
int (*table_exists_in_engine)(THD* thd, const char *db,
const char *name);
};