mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
80ed7e1a8d
- Corrected mistake in Windows only test. mysql-test/r/windows.result: Bug#23983 ps.test fails to open shared library. - Windows Result cleanup. mysql-test/t/windows.test: Bug#23983 ps.test fails to open shared library. - Windows Test cleanup.
22 lines
705 B
Text
22 lines
705 B
Text
use lpt1;
|
|
ERROR 42000: Unknown database 'lpt1'
|
|
use com1;
|
|
ERROR 42000: Unknown database 'com1'
|
|
use prn;
|
|
ERROR 42000: Unknown database 'prn'
|
|
create table nu (a int);
|
|
drop table nu;
|
|
create procedure proc_1() install plugin my_plug soname '\\root\\some_plugin.dll';
|
|
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.dll'";
|
|
execute abc;
|
|
ERROR HY000: No paths allowed for shared library
|
|
execute abc;
|
|
ERROR HY000: No paths allowed for shared library
|
|
deallocate prepare abc;
|