summaryrefslogtreecommitdiffstats
path: root/mysql-test/main/ps_not_windows.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/ps_not_windows.result')
-rw-r--r--mysql-test/main/ps_not_windows.result14
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/main/ps_not_windows.result b/mysql-test/main/ps_not_windows.result
new file mode 100644
index 00000000..e58b6ec5
--- /dev/null
+++ b/mysql-test/main/ps_not_windows.result
@@ -0,0 +1,14 @@
+create procedure proc_1() install plugin my_plug soname '/root/some_plugin.so';
+call proc_1();
+ERROR HY000: No paths allowed for shared library
+call proc_1();
+ERROR HY000: No paths allowed for shared library
+call proc_1();
+ERROR HY000: No paths allowed for shared library
+drop procedure proc_1;
+prepare abc from "install plugin my_plug soname '/root/some_plugin.so'";
+execute abc;
+ERROR HY000: No paths allowed for shared library
+execute abc;
+ERROR HY000: No paths allowed for shared library
+deallocate prepare abc;