Commit 0de57df0 authored by dkatz@damien-katzs-computer.local's avatar dkatz@damien-katzs-computer.local

Merge dkatz@bk-internal.mysql.com:/home/bk/mysql-5.1-maint

into  damien-katzs-computer.local:/Users/dkatz/mysql51
parents 087ddbb5 5231fce4
...@@ -22,11 +22,14 @@ connection con2; ...@@ -22,11 +22,14 @@ connection con2;
lock tables t1 read; lock tables t1 read;
unlock tables; unlock tables;
lock tables t1 read; lock tables t1 read;
let $ID= `select connection_id()`;
connection con1; connection con1;
--send --send
update t1 set n = 3; update t1 set n = 3;
connection con2; connection con2;
sleep 1; # wait for the other query to start executing
let $wait_condition= select 1 from INFORMATION_SCHEMA.PROCESSLIST where ID = $ID and STATE = 0;
--source include/wait_condition.inc
unlock tables; unlock tables;
connection con1; connection con1;
reap; reap;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment