List:Commits« Previous MessageNext Message »
From:Ignacio Galarza Date:November 20 2006 7:11pm
Subject:bk commit into 5.1 tree (iggy:1.2381) BUG#23983
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of Administrator. When Administrator does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2006-11-20 14:11:12-05:00, iggy@amd64. +2 -0
  Bug#23983 ps.test fails to open shared library.
  - Corrected mistake in Windows only test.

  mysql-test/r/windows.result@stripped, 2006-11-20 14:11:09-05:00, iggy@amd64. +4 -6
    Bug#23983 ps.test fails to open shared library.
    - Windows Result cleanup.

  mysql-test/t/windows.test@stripped, 2006-11-20 14:11:09-05:00, iggy@amd64. +4 -6
    Bug#23983 ps.test fails to open shared library.
    - Windows Test cleanup.

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	iggy
# Host:	amd64.
# Root:	D:/src/mysql-5.1-maint_bug23983

--- 1.5/mysql-test/r/windows.result	2006-11-20 14:11:24 -05:00
+++ 1.6/mysql-test/r/windows.result	2006-11-20 14:11:24 -05:00
@@ -14,11 +14,9 @@
 call proc_1();
 ERROR HY000: No paths allowed for shared library
 drop procedure proc_1;
-create procedure proc_1() install plugin my_plug soname '\\root\\some_plugin.dll';
-call proc_1();
+prepare abc from "install plugin my_plug soname '\\\\root\\\\some_plugin.dll'";
+execute abc;
 ERROR HY000: No paths allowed for shared library
-call proc_1();
+execute abc;
 ERROR HY000: No paths allowed for shared library
-call proc_1();
-ERROR HY000: No paths allowed for shared library
-drop procedure proc_1;
+deallocate prepare abc;

--- 1.5/mysql-test/t/windows.test	2006-11-20 14:11:24 -05:00
+++ 1.6/mysql-test/t/windows.test	2006-11-20 14:11:24 -05:00
@@ -33,11 +33,9 @@
 call proc_1();
 drop procedure proc_1;
 
-create procedure proc_1() install plugin my_plug soname '\\root\\some_plugin.dll';
+prepare abc from "install plugin my_plug soname '\\\\root\\\\some_plugin.dll'";
 --error ER_UDF_NO_PATHS
-call proc_1();
+execute abc;
 --error ER_UDF_NO_PATHS
-call proc_1();
---error ER_UDF_NO_PATHS
-call proc_1();
-drop procedure proc_1;
+execute abc;
+deallocate prepare abc;
Thread
bk commit into 5.1 tree (iggy:1.2381) BUG#23983Ignacio Galarza20 Nov