summaryrefslogtreecommitdiff
path: root/mysql-test/r/windows.result
diff options
context:
space:
mode:
authorunknown <iggy/Administrator@amd64.>2006-11-20 15:18:57 -0500
committerunknown <iggy/Administrator@amd64.>2006-11-20 15:18:57 -0500
commit758758de550fb6662acc223d7e2e8098d99fbf2a (patch)
tree6998d894cc692028ff6e7029c0ffc3dde5e3f96c /mysql-test/r/windows.result
parent16d0d50db5598398cf1964d297177fa1abc18eec (diff)
downloadmariadb-git-758758de550fb6662acc223d7e2e8098d99fbf2a.tar.gz
Bug#23983 ps.test fails to open shared library
- 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
Diffstat (limited to 'mysql-test/r/windows.result')
-rw-r--r--mysql-test/r/windows.result14
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/r/windows.result b/mysql-test/r/windows.result
index 039c5b1476e..e8c3c81a44e 100644
--- a/mysql-test/r/windows.result
+++ b/mysql-test/r/windows.result
@@ -6,3 +6,17 @@ 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;