Commit 4f6b8707 authored by Kristofer Pettersson's avatar Kristofer Pettersson

Bug#46486 warnings produced when running mysql_install_db

Incremental patch part 2

Removing dead code and changing a note level message to a warning.
parent cae61b1c
...@@ -1520,7 +1520,7 @@ error: ...@@ -1520,7 +1520,7 @@ error:
void plugin_shutdown(void) void plugin_shutdown(void)
{ {
uint i, count= plugin_array.elements, free_slots= 0; uint i, count= plugin_array.elements;
struct st_plugin_int **plugins, *plugin; struct st_plugin_int **plugins, *plugin;
struct st_plugin_dl **dl; struct st_plugin_dl **dl;
DBUG_ENTER("plugin_shutdown"); DBUG_ENTER("plugin_shutdown");
...@@ -1541,18 +1541,13 @@ void plugin_shutdown(void) ...@@ -1541,18 +1541,13 @@ void plugin_shutdown(void)
while (reap_needed && (count= plugin_array.elements)) while (reap_needed && (count= plugin_array.elements))
{ {
reap_plugins(); reap_plugins();
for (i= free_slots= 0; i < count; i++) for (i= 0; i < count; i++)
{ {
plugin= *dynamic_element(&plugin_array, i, struct st_plugin_int **); plugin= *dynamic_element(&plugin_array, i, struct st_plugin_int **);
switch (plugin->state) { if (plugin->state == PLUGIN_IS_READY)
case PLUGIN_IS_READY: {
plugin->state= PLUGIN_IS_DELETED; plugin->state= PLUGIN_IS_DELETED;
reap_needed= true; reap_needed= true;
break;
case PLUGIN_IS_FREED:
case PLUGIN_IS_UNINITIALIZED:
free_slots++;
break;
} }
} }
if (!reap_needed) if (!reap_needed)
...@@ -1586,8 +1581,8 @@ void plugin_shutdown(void) ...@@ -1586,8 +1581,8 @@ void plugin_shutdown(void)
if (!(plugins[i]->state & (PLUGIN_IS_UNINITIALIZED | PLUGIN_IS_FREED | if (!(plugins[i]->state & (PLUGIN_IS_UNINITIALIZED | PLUGIN_IS_FREED |
PLUGIN_IS_DISABLED))) PLUGIN_IS_DISABLED)))
{ {
sql_print_information("Plugin '%s' will be forced to shutdown", sql_print_warning("Plugin '%s' will be forced to shutdown",
plugins[i]->name.str); plugins[i]->name.str);
/* /*
We are forcing deinit on plugins so we don't want to do a ref_count We are forcing deinit on plugins so we don't want to do a ref_count
check until we have processed all the plugins. check until we have processed all the plugins.
......
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