mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
a2beabfe10
- 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. mysql-test/r/ps.result: Bug#23983 ps.test fails to open shared library - Moving to OS specific results. mysql-test/r/windows.result: Bug#23983 ps.test fails to open shared library - OS Specific result for shared library argument with path mysql-test/t/ps.test: Bug#23983 ps.test fails to open shared library - Moving to OS specific tests. mysql-test/t/windows.test: Bug#23983 ps.test fails to open shared library - OS Specific test for shared library argument with path mysql-test/r/ps_not_windows.result: Bug#23983 ps.test fails to open shared library - OS Specific result for shared library argument with path mysql-test/t/ps_not_windows.test: Bug#23983 ps.test fails to open shared library - OS Specific test for shared library argument with path
42 lines
770 B
Text
42 lines
770 B
Text
# Windows-specific tests
|
|
--source include/windows.inc
|
|
|
|
#
|
|
# Bug 9148: Denial of service
|
|
#
|
|
--error 1049
|
|
use lpt1;
|
|
--error 1049
|
|
use com1;
|
|
--error 1049
|
|
use prn;
|
|
|
|
#
|
|
# Bug #12325: Can't create table named 'nu'
|
|
#
|
|
create table nu (a int);
|
|
drop table nu;
|
|
|
|
# End of 4.1 tests
|
|
|
|
#
|
|
# Bug #20665: All commands supported in Stored Procedures should work in
|
|
# Prepared Statements
|
|
#
|
|
|
|
create procedure proc_1() install plugin my_plug soname '\\root\\some_plugin.dll';
|
|
--error ER_UDF_NO_PATHS
|
|
call proc_1();
|
|
--error ER_UDF_NO_PATHS
|
|
call proc_1();
|
|
--error ER_UDF_NO_PATHS
|
|
call proc_1();
|
|
drop procedure proc_1;
|
|
|
|
prepare abc from "install plugin my_plug soname '\\\\root\\\\some_plugin.dll'";
|
|
--error ER_UDF_NO_PATHS
|
|
execute abc;
|
|
--error ER_UDF_NO_PATHS
|
|
execute abc;
|
|
deallocate prepare abc;
|
|
|