summaryrefslogtreecommitdiff
path: root/mysql-test/main/ps_not_windows.result
blob: e58b6ec5cad692ec8002e2f4a48c765660b15806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;