diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2015-07-28 10:18:55 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2015-07-29 13:51:22 +0400 |
commit | 4188ba9c1e0ea195adf00d9e6d11b29ef18b2109 (patch) | |
tree | de48b73011f97be796ff8369bfaa834fb410a7a1 /mysql-test/t/blackhole_plugin.test | |
parent | cf30074c3ff6815d85bbd864b28adfe7949d340c (diff) | |
download | mariadb-git-4188ba9c1e0ea195adf00d9e6d11b29ef18b2109.tar.gz |
MDEV-7652 - More explanatory ERROR and WARNING messages when loading plugins
with plugin-load-add that are already registered at mysql.plugin
- issue just one error message, without this extra warning
- don't abuse ER_UDF_EXISTS, instead add a proper error message for plugins
- report started initialization for each plugin source
Diffstat (limited to 'mysql-test/t/blackhole_plugin.test')
-rw-r--r-- | mysql-test/t/blackhole_plugin.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/blackhole_plugin.test b/mysql-test/t/blackhole_plugin.test index 8af8fcc941c..0cc7ae0817c 100644 --- a/mysql-test/t/blackhole_plugin.test +++ b/mysql-test/t/blackhole_plugin.test @@ -7,7 +7,7 @@ DROP TABLE t1; --replace_regex /\.dll/.so/ eval INSTALL PLUGIN blackhole SONAME '$HA_BLACKHOLE_SO'; --replace_regex /\.dll/.so/ ---error 1125 +--error ER_PLUGIN_INSTALLED eval INSTALL PLUGIN BLACKHOLE SONAME '$HA_BLACKHOLE_SO'; UNINSTALL PLUGIN blackhole; |