summaryrefslogtreecommitdiff
path: root/mysql-test/t/windows.test
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
commita2beabfe1059d8c992dd69cebb886585ced2c445 (patch)
tree6998d894cc692028ff6e7029c0ffc3dde5e3f96c /mysql-test/t/windows.test
parent2ff157dbeee9b175471f6f63084abe799de10562 (diff)
downloadmariadb-git-a2beabfe1059d8c992dd69cebb886585ced2c445.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/t/windows.test')
-rw-r--r--mysql-test/t/windows.test22
1 files changed, 22 insertions, 0 deletions
diff --git a/mysql-test/t/windows.test b/mysql-test/t/windows.test
index d6bcfeb8cb3..4dab646df2c 100644
--- a/mysql-test/t/windows.test
+++ b/mysql-test/t/windows.test
@@ -18,3 +18,25 @@ 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;
+