diff options
author | Tatiana A. Nurnberg <azundris@mysql.com> | 2008-11-04 11:00:26 +0100 |
---|---|---|
committer | Tatiana A. Nurnberg <azundris@mysql.com> | 2008-11-04 11:00:26 +0100 |
commit | 3b50efc34b3e21a6119f29c0cd720d33d28894ba (patch) | |
tree | 2923cf16400c7def8a5ffae45d0dd159d82ae26e /sql | |
parent | e1fb0c9a1adbfa6798c0aa9dc3158e77f2dee1cb (diff) | |
download | mariadb-git-3b50efc34b3e21a6119f29c0cd720d33d28894ba.tar.gz |
Bug#39117 "plugin_load" option not documented
correct text describing the --plugin-load option to mysqld
sql/mysqld.cc:
correct text describing the --plugin-load option to mysqld
Diffstat (limited to 'sql')
-rw-r--r-- | sql/mysqld.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc index abb778394e6..c0a1b2e5306 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -6666,9 +6666,10 @@ The minimum value for this variable is 4096.", "Directory for plugins.", (uchar**) &opt_plugin_dir_ptr, (uchar**) &opt_plugin_dir_ptr, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, - {"plugin_load", OPT_PLUGIN_LOAD, - "Optional colon separated list of plugins to load, where each plugin is " - "identified by name and path to library seperated by an equals.", + {"plugin-load", OPT_PLUGIN_LOAD, + "Optional colon-separated list of plugins to load, where each plugin is " + "identified as name=library, where name is the plugin name and library " + "is the plugin library in plugin_dir.", (uchar**) &opt_plugin_load, (uchar**) &opt_plugin_load, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, {"preload_buffer_size", OPT_PRELOAD_BUFFER_SIZE, |