diff options
author | Kristofer Pettersson <kristofer.pettersson@sun.com> | 2009-09-03 12:08:55 +0200 |
---|---|---|
committer | Kristofer Pettersson <kristofer.pettersson@sun.com> | 2009-09-03 12:08:55 +0200 |
commit | 76b8bd35898ea74734b4c57c10bdb2928dd7dd55 (patch) | |
tree | 5eb8387cdfce0471f6cfce1a1352e2a197d29684 /sql/sql_plugin.cc | |
parent | dedcfe2f3dfae9ee07dc0e7dd429d03f30970d70 (diff) | |
download | mariadb-git-76b8bd35898ea74734b4c57c10bdb2928dd7dd55.tar.gz |
Bug#46486 warnings produced when running mysql_install_db
During start up some plugins are disabled by default. This caused an additional
warning level message to be emitted as a result of a previous bug patch. Since
there is risk of unnecessary confusion regarding the operation level of the server
the redundant information is removed.
Diffstat (limited to 'sql/sql_plugin.cc')
-rw-r--r-- | sql/sql_plugin.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sql/sql_plugin.cc b/sql/sql_plugin.cc index da168d36429..f00e1f72390 100644 --- a/sql/sql_plugin.cc +++ b/sql/sql_plugin.cc @@ -1565,9 +1565,6 @@ void plugin_shutdown(void) } } - if (count > free_slots) - sql_print_warning("Forcing shutdown of %d plugins", count - free_slots); - plugins= (struct st_plugin_int **) my_alloca(sizeof(void*) * (count+1)); /* |