Commit 67579fd2 authored by Michael Widenius's avatar Michael Widenius

Added missing fix from last commit

parent 4fe34250
...@@ -7,7 +7,7 @@ drop table if exists t1,t2,t3,t4,t5,t6; ...@@ -7,7 +7,7 @@ drop table if exists t1,t2,t3,t4,t5,t6;
CREATE TABLE t1 (c1 INT) ENGINE= MyISAM; CREATE TABLE t1 (c1 INT) ENGINE= MyISAM;
LOCK TABLE t1 WRITE; LOCK TABLE t1 WRITE;
# connection con1 # connection con1
SET SESSION debug="+d,sleep_open_and_lock_after_open"; SET GLOBAL debug="+d,sleep_open_and_lock_after_open";
INSERT INTO t1 VALUES (1); INSERT INTO t1 VALUES (1);
# connection default # connection default
# Let INSERT go into thr_multi_lock(). # Let INSERT go into thr_multi_lock().
...@@ -21,6 +21,6 @@ SELECT * FROM t1; ...@@ -21,6 +21,6 @@ SELECT * FROM t1;
c1 c1
UNLOCK TABLES; UNLOCK TABLES;
# connection con1 # connection con1
SET SESSION debug="-d,sleep_open_and_lock_after_open"; SET GLOBAL debug="-d,sleep_open_and_lock_after_open";
# connection default # connection default
DROP TABLE t1; DROP TABLE t1;
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