diff options
author | magnus@shellback.(none) <> | 2004-09-26 16:11:24 +0200 |
---|---|---|
committer | magnus@shellback.(none) <> | 2004-09-26 16:11:24 +0200 |
commit | 059941db21bb9cedd2663a10550e3277d3fca3df (patch) | |
tree | 1d3702820ede0b06dd2271c41fe8c3d78c8afe5c /sql/handler.h | |
parent | 61be5a9c2764000ffaec574e08be8a02d950561e (diff) | |
download | mariadb-git-059941db21bb9cedd2663a10550e3277d3fca3df.tar.gz |
WL#1424 Updated after review
* Changed the implementation of ndbcluster_find_files to be more efficient, using only one mutex lock
* Moved ha_find_files to end of mysql_find_files so that it can be passed the list that we are interested to find.
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/handler.h b/sql/handler.h index fea03c5080e..9806d2e7499 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -566,7 +566,7 @@ int ha_change_key_cache(KEY_CACHE *old_key_cache, int ha_discover(THD* thd, const char* dbname, const char* name, const void** frmblob, uint* frmlen); int ha_find_files(THD *thd,const char *db,const char *path, - const char *wild, bool dir); + const char *wild, bool dir,List<char>* files); int ha_table_exists(THD* thd, const char* db, const char* name); |