summaryrefslogtreecommitdiff
path: root/mysql-test/t/merge-big.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/merge-big.test')
-rw-r--r--mysql-test/t/merge-big.test5
1 files changed, 0 insertions, 5 deletions
diff --git a/mysql-test/t/merge-big.test b/mysql-test/t/merge-big.test
index 78c3e8c00ac..9bd2cab2c8a 100644
--- a/mysql-test/t/merge-big.test
+++ b/mysql-test/t/merge-big.test
@@ -40,13 +40,11 @@ drop table if exists t1,t2,t3,t4,t5,t6;
CREATE TABLE t1 (c1 INT) ENGINE= MyISAM;
LOCK TABLE t1 WRITE;
#SELECT NOW();
- --echo # connection con1
connect (con1,localhost,root,,);
let $con1_id= `SELECT CONNECTION_ID()`;
SET @orig_debug=@@debug;
SET GLOBAL debug_dbug="+d,sleep_open_and_lock_after_open";
send INSERT INTO t1 VALUES (1);
---echo # connection default
connection default;
--echo # Let INSERT go into thr_multi_lock().
#--sleep 8
@@ -72,12 +70,9 @@ FLUSH TABLES;
SELECT * FROM t1;
#SELECT NOW();
UNLOCK TABLES;
- --echo # connection con1
connection con1;
reap;
SET GLOBAL debug_dbug=@orig_debug;
disconnect con1;
---echo # connection default
connection default;
DROP TABLE t1;
-