diff options
author | unknown <acurtis/antony@xiphis.org/ltamd64.xiphis.org> | 2008-01-25 16:05:15 -0800 |
---|---|---|
committer | unknown <acurtis/antony@xiphis.org/ltamd64.xiphis.org> | 2008-01-25 16:05:15 -0800 |
commit | f1042103e619330f5b1fdd11faed7d07c79df49f (patch) | |
tree | 2078ea29ea5ec8f82e7beca8eb0ac10c33b28747 /mysql-test/t/plugin_load.test | |
parent | f23b19eaea46b983db99d1662780a232b3f8cfba (diff) | |
download | mariadb-git-f1042103e619330f5b1fdd11faed7d07c79df49f.tar.gz |
Bug#33358
"Plugin enum variables can't be set from command line"
fix crash of LOCK_plugins mutex when loading plug-ins from command line.
fix off-by-one bug when loading multiple plug-ins from the command line.
initialize command line handling for ENUM and SET plugin variable types.
sql/sql_plugin.cc:
Bug33358
fix crash of LOCK_plugins mutex when loading plug-ins from command line.
fix off-by-one bug when loading multiple plug-ins from the command line.
initialize command line handling for ENUM and SET plugin variable types.
mysql-test/r/plugin_load.result:
New BitKeeper file ``mysql-test/r/plugin_load.result''
mysql-test/t/plugin_load-master.opt:
New BitKeeper file ``mysql-test/t/plugin_load-master.opt''
mysql-test/t/plugin_load.test:
New BitKeeper file ``mysql-test/t/plugin_load.test''
Diffstat (limited to 'mysql-test/t/plugin_load.test')
-rw-r--r-- | mysql-test/t/plugin_load.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/plugin_load.test b/mysql-test/t/plugin_load.test new file mode 100644 index 00000000000..8555247dd71 --- /dev/null +++ b/mysql-test/t/plugin_load.test @@ -0,0 +1,3 @@ +--source include/have_example_plugin.inc + +SELECT @@global.example_enum_var = 'e2'; |