mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / r / ps_not_windows.result
blobe58b6ec5cad692ec8002e2f4a48c765660b15806
1 create procedure proc_1() install plugin my_plug soname '/root/some_plugin.so';
2 call proc_1();
3 ERROR HY000: No paths allowed for shared library
4 call proc_1();
5 ERROR HY000: No paths allowed for shared library
6 call proc_1();
7 ERROR HY000: No paths allowed for shared library
8 drop procedure proc_1;
9 prepare abc from "install plugin my_plug soname '/root/some_plugin.so'";
10 execute abc;
11 ERROR HY000: No paths allowed for shared library
12 execute abc;
13 ERROR HY000: No paths allowed for shared library
14 deallocate prepare abc;