From: msvensson Date: December 8 2006 4:09pm Subject: bk commit into 4.1 tree (msvensson:1.2586) BUG#19410 List-Archive: http://lists.mysql.com/commits/16667 X-Bug: 19410 Message-Id: <20061208160913.1CABA86DF0C@neptunus.localdomain> Below is the list of changes that have just been committed into a local 4.1 repository of msvensson. When msvensson 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-12-08 17:09:07+01:00, msvensson@neptunus.(none) +1 -0 Bug#19410 Test 'kill' fails on Windows + SCO mysql-test/t/kill.test@stripped, 2006-12-08 17:09:04+01:00, msvensson@neptunus.(none) +4 -1 Move the connect of second connection to just before the query to be killed are sent. This introduces less variance since the connect time is not included in the delay we want between send of query and kill. # 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: msvensson # Host: neptunus.(none) # Root: /home/msvensson/mysql/mysql-4.1-maint --- 1.13/mysql-test/t/kill.test 2006-12-08 17:09:13 +01:00 +++ 1.14/mysql-test/t/kill.test 2006-12-08 17:09:13 +01:00 @@ -70,11 +70,14 @@ insert into t2 select id from t1; create table t3 (kill_id int); insert into t3 values(connection_id()); +connect (conn2, localhost, root,,); +connection conn2; + +connection conn1; -- disable_result_log send select id from t1 where id in (select distinct id from t2); -- enable_result_log -connect (conn2, localhost, root,,); connection conn2; select ((@id := kill_id) - kill_id) from t3; -- sleep 1