Commit 3ea4f67f authored by brian@zim.tangent.org's avatar brian@zim.tangent.org

Removing support for storage engines being loadable, will push featureto 5.2.

parent fd2b90d1
...@@ -517,15 +517,8 @@ static int plugin_initialize(struct st_plugin_int *plugin) ...@@ -517,15 +517,8 @@ static int plugin_initialize(struct st_plugin_int *plugin)
switch (plugin->plugin->type) switch (plugin->plugin->type)
{ {
case MYSQL_STORAGE_ENGINE_PLUGIN: case MYSQL_STORAGE_ENGINE_PLUGIN:
if (ha_initialize_handlerton((handlerton*) plugin->plugin->info)) sql_print_error("Storage Engine plugins are unsupported in this version.");
{ goto err;
sql_print_error("Plugin '%s' handlerton init returned error.",
plugin->name.str);
DBUG_PRINT("warning", ("Plugin '%s' handlerton init returned error.",
plugin->name.str))
goto err;
}
break;
default: default:
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment