summaryrefslogtreecommitdiff
path: root/mysql-test/main/plugin.test
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2018-08-23 21:41:22 +0200
committerSergei Golubchik <serg@mariadb.org>2018-10-31 16:06:15 +0100
commit9aac2bf86e606c536136c838249a8dbcf2575b39 (patch)
treeeb6842617a08665ba184ce974c639b34a91941d0 /mysql-test/main/plugin.test
parent65180225b8c091ba8784b40ace5f5288ce069e5d (diff)
downloadmariadb-git-9aac2bf86e606c536136c838249a8dbcf2575b39.tar.gz
MDEV-16294 post-merge cleanups
Closes #757
Diffstat (limited to 'mysql-test/main/plugin.test')
-rw-r--r--mysql-test/main/plugin.test6
1 files changed, 4 insertions, 2 deletions
diff --git a/mysql-test/main/plugin.test b/mysql-test/main/plugin.test
index ce320437fd2..273e1e064a5 100644
--- a/mysql-test/main/plugin.test
+++ b/mysql-test/main/plugin.test
@@ -267,10 +267,9 @@ RENAME TABLE t1 TO t2;
DROP TABLE t1;
--echo #
---echo # INSTALL IF NOT EXISTS [PLUGIN name] SONAME library /
+--echo # INSTALL IF NOT EXISTS PLUGIN name SONAME library /
--echo # UNINSTALL IF EXISTS PLUGIN|SONAME name
--echo #
---echo #
select PLUGIN_NAME,PLUGIN_STATUS,PLUGIN_TYPE from information_schema.plugins where plugin_library like 'ha_example%';
INSTALL PLUGIN IF NOT EXISTS example SONAME 'ha_example';
@@ -297,9 +296,12 @@ select PLUGIN_NAME,PLUGIN_STATUS,PLUGIN_TYPE from information_schema.plugins whe
UNINSTALL SONAME IF EXISTS 'ha_example';
+--replace_regex /\.dll/.so/
UNINSTALL SONAME IF EXISTS 'ha_example';
+--replace_regex /\.dll/.so/
SHOW WARNINGS;
select PLUGIN_NAME,PLUGIN_STATUS,PLUGIN_TYPE from information_schema.plugins where plugin_library like 'ha_example%';
+--replace_regex /\.dll/.so/
--error 1305
UNINSTALL SONAME 'ha_example';