diff options
author | magnus@neptunus.(none) <> | 2004-09-21 12:13:58 +0200 |
---|---|---|
committer | magnus@neptunus.(none) <> | 2004-09-21 12:13:58 +0200 |
commit | 0097c6d9b2be98a30bd4846e54396fecda5847a3 (patch) | |
tree | 800e2e50047d8deacfc968120c67c71a51cd8d95 /sql/handler.h | |
parent | 08312bfb3267547c5fe58ca88b7f8d40be5e590a (diff) | |
download | mariadb-git-0097c6d9b2be98a30bd4846e54396fecda5847a3.tar.gz |
Changed WL#1424 to use the function ha_find_files. This is a simpler implementation and all handler specific code is hidden in the appropriate handler.
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sql/handler.h b/sql/handler.h index c01bfcd4f5f..fea03c5080e 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -565,7 +565,8 @@ int ha_change_key_cache(KEY_CACHE *old_key_cache, KEY_CACHE *new_key_cache); int ha_discover(THD* thd, const char* dbname, const char* name, const void** frmblob, uint* frmlen); -int ha_list_tables(THD* thd, HASH *tables, const char* db); +int ha_find_files(THD *thd,const char *db,const char *path, + const char *wild, bool dir); int ha_table_exists(THD* thd, const char* db, const char* name); -int ha_can_discover(THD* thd, const char* name); + |