diff options
author | brian@zim.(none) <> | 2006-09-30 12:49:46 -0700 |
---|---|---|
committer | brian@zim.(none) <> | 2006-09-30 12:49:46 -0700 |
commit | 46ae2113ba8a0d240469ba304b51ebebdd34942c (patch) | |
tree | 84daf07576e05d5882ff636c5b4ae61f791e0a47 /sql/sql_show.cc | |
parent | a756fd36ef7f462a0103ad4b5a27f2e1c2924a93 (diff) | |
download | mariadb-git-46ae2113ba8a0d240469ba304b51ebebdd34942c.tar.gz |
This patch adds handlerton passing to functions. NDB and Innodb still require a global hanlderton in the main code due to the nature of the sql_cache call back function (should be solveable... another patch).
Partitioning now has a flag to allow disabling of engines from being compatible with partitioning. Cleaned up heap naming convention on panic call.
Diffstat (limited to 'sql/sql_show.cc')
-rw-r--r-- | sql/sql_show.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_show.cc b/sql/sql_show.cc index 709184e1c3d..9e2647647ce 100644 --- a/sql/sql_show.cc +++ b/sql/sql_show.cc @@ -5001,7 +5001,7 @@ static my_bool run_hton_fill_schema_files(THD *thd, st_plugin_int *plugin, (run_hton_fill_schema_files_args *) arg; handlerton *hton= (handlerton *)plugin->data; if(hton->fill_files_table && hton->state == SHOW_OPTION_YES) - hton->fill_files_table(thd, args->tables, args->cond); + hton->fill_files_table(hton, thd, args->tables, args->cond); return false; } |