diff options
Diffstat (limited to 'sql/handler.cc')
-rw-r--r-- | sql/handler.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/handler.cc b/sql/handler.cc index dc2f213640a..c7e7b08ba6e 100644 --- a/sql/handler.cc +++ b/sql/handler.cc @@ -1471,7 +1471,7 @@ int ha_discover(THD* thd, const char* db, const char* name, 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 error= 0; DBUG_ENTER("ha_find_files"); @@ -1479,7 +1479,7 @@ ha_find_files(THD *thd,const char *db,const char *path, db, path, wild, dir)); #ifdef HAVE_NDBCLUSTER_DB if (have_ndbcluster == SHOW_OPTION_YES) - error= ndbcluster_find_files(thd, db, path, wild, dir); + error= ndbcluster_find_files(thd, db, path, wild, dir, files); #endif DBUG_RETURN(error); |