mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
3d1b9a66e4
- When a shared library argument is supplied, it's checked for an OS specific directory separator. The expected error is different depending on the separator used. Create OS specific versions of these tests.
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;
|