summaryrefslogtreecommitdiff
path: root/mysql-test/r
diff options
context:
space:
mode:
authorStaale Smedseng <staale.smedseng@sun.com>2010-04-22 15:52:00 +0200
committerStaale Smedseng <staale.smedseng@sun.com>2010-04-22 15:52:00 +0200
commit20c9177518c3bb07c74df9fa8e25ba46af60f484 (patch)
tree97a0fc74fbdab86d5760f344f5e2bd773b203d26 /mysql-test/r
parent4859951a900b687f55f8ca3ac786bbec200fcc90 (diff)
downloadmariadb-git-20c9177518c3bb07c74df9fa8e25ba46af60f484.tar.gz
Bug#46261 Plugins can be installed with --skip-grant-tables
Previously installed dynamic plugins are explicitly not loaded on startup with --skip-grant-tables enabled. However, INSTALL PLUGIN/UNINSTALL PLUGIN commands are allowed, and result in inconsistent error messages (reporting duplicate plugin or plugin does not exist). This patch adds a check for --skip-grant-tables mode, and returns error ER_OPTION_PREVENTS_STATEMENT to the user when the above commands are attempted.
Diffstat (limited to 'mysql-test/r')
-rw-r--r--mysql-test/r/bug46261.result8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/bug46261.result b/mysql-test/r/bug46261.result
new file mode 100644
index 00000000000..f54b698e08f
--- /dev/null
+++ b/mysql-test/r/bug46261.result
@@ -0,0 +1,8 @@
+#
+# Bug#46261 Plugins can be installed with --skip-grant-tables
+#
+INSTALL PLUGIN example SONAME 'ha_example.so';
+ERROR HY000: The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
+UNINSTALL PLUGIN example;
+ERROR HY000: The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
+End of 5.1 tests