diff options
author | Sergei Golubchik <serg@mariadb.org> | 2014-12-04 17:59:07 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-01-08 16:51:30 +0100 |
commit | 4ce39dca99568677daf8cedafc2cbaa169e4eb7d (patch) | |
tree | 26a064e917f86302c932bf44281b73a31c584b0f /sql/sql_plugin.cc | |
parent | ed0ea644a0770194b6c8a61f9106e44f711dedf6 (diff) | |
download | mariadb-git-4ce39dca99568677daf8cedafc2cbaa169e4eb7d.tar.gz |
enable feedback plugin by default
As requested by Monty
Diffstat (limited to 'sql/sql_plugin.cc')
-rw-r--r-- | sql/sql_plugin.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sql_plugin.cc b/sql/sql_plugin.cc index 343527ab030..f386e864c3f 100644 --- a/sql/sql_plugin.cc +++ b/sql/sql_plugin.cc @@ -176,10 +176,10 @@ static struct - yet disable explicitly a component needed for the functionality to work, by using '--skip-performance-schema' (the plugin) */ - { "performance_schema", PLUGIN_FORCE }, + { "performance_schema", PLUGIN_FORCE } /* we disable few other plugins by default */ - { "feedback", PLUGIN_OFF } + //,{ "feedback", PLUGIN_OFF } }; /* support for Services */ |