diff options
author | Sergei Golubchik <serg@mariadb.org> | 2014-06-19 12:02:23 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2014-06-19 12:02:23 +0200 |
commit | dc64ba2187fa97d74ee465dd3ca234761b1be7c5 (patch) | |
tree | b6f97c25486fcbd9981f9fe0777ca1e586bfcb94 /sql/sql_plugin.cc | |
parent | 0cb7c19fbe9601f8fe7f83cfb13ea0bf67b75e2b (diff) | |
download | mariadb-git-dc64ba2187fa97d74ee465dd3ca234761b1be7c5.tar.gz |
MDEV-6137 better help for SET/ENUM sysvars
Auto-generate the allowed list of values for enum/set/flagset options
in --help output. But don't do that when the help text already has them.
Also, remove lists of values from help strings of various options, where
they were simply listed without any additional information.
Diffstat (limited to 'sql/sql_plugin.cc')
-rw-r--r-- | sql/sql_plugin.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_plugin.cc b/sql/sql_plugin.cc index 2828567fbc3..b2dd38ad720 100644 --- a/sql/sql_plugin.cc +++ b/sql/sql_plugin.cc @@ -3597,7 +3597,7 @@ static int construct_options(MEM_ROOT *mem_root, struct st_plugin_int *tmp, options[0].typelib= options[1].typelib= &global_plugin_typelib; strxnmov(comment, max_comment_len, "Enable or disable ", plugin_name, - " plugin. Possible values are ON, OFF, FORCE (don't start " + " plugin. One of: ON, OFF, FORCE (don't start " "if the plugin fails to load).", NullS); options[0].comment= comment; /* |