summaryrefslogtreecommitdiff
path: root/sql/handler.h
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2013-04-07 15:57:38 +0200
committerSergei Golubchik <sergii@pisem.net>2013-04-07 15:57:38 +0200
commit09ece94fac5fc160e11e6bd46208e6c0be86e7e6 (patch)
tree55e41ca77cfd9459cce8133364dec51b97d26973 /sql/handler.h
parent94753d8b946aa8b04cc713377fdcd50f952f3231 (diff)
downloadmariadb-git-09ece94fac5fc160e11e6bd46208e6c0be86e7e6.tar.gz
remove handlerton::find_files (new implementation is coming),
and handlerton::table_exists_in_engine (new implementation is coming), and handlerton::license (redundant)
Diffstat (limited to 'sql/handler.h')
-rw-r--r--sql/handler.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/sql/handler.h b/sql/handler.h
index 2acec83d3ca..f6a10a84646 100644
--- a/sql/handler.h
+++ b/sql/handler.h
@@ -1079,14 +1079,6 @@ struct handlerton
const char *name,
uchar **frmblob,
size_t *frmlen);
- int (*find_files)(handlerton *hton, THD *thd,
- const char *db,
- const char *path,
- const char *wild, bool dir, List<LEX_STRING> *files);
- int (*table_exists_in_engine)(handlerton *hton, THD* thd, const char *db,
- const char *name);
-
- uint32 license; /* Flag for Engine License */
/*
Optional clauses in the CREATE/ALTER TABLE
*/
@@ -3041,9 +3033,6 @@ bool ha_check_if_table_exists(THD* thd, const char *db, const char *name,
bool *exists);
int ha_discover(THD* thd, const char* dbname, const char* name,
uchar** frmblob, size_t* frmlen);
-int ha_find_files(THD *thd,const char *db,const char *path,
- const char *wild, bool dir, List<LEX_STRING>* files);
-int ha_table_exists_in_engine(THD* thd, const char* db, const char* name);
/* key cache */
extern "C" int ha_init_key_cache(const char *name, KEY_CACHE *key_cache, void *);