diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2016-03-26 00:16:36 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2016-03-27 17:39:30 +0400 |
commit | 4ee310cfaee1339d2508cc6a62d9685e1f14af69 (patch) | |
tree | cbcf9e3b8aec9f014c1a8e9d8bdbc31976d797d6 /mysql-test/t/merge-big.test | |
parent | fcde9a889dc12b21823b9c4e1776d0329a99c48d (diff) | |
download | mariadb-git-bb-10.2-MDEV-6720.tar.gz |
MDEV-6720 - enable connection log in mysqltest by defaultbb-10.2-MDEV-6720
Additional fixes.
Diffstat (limited to 'mysql-test/t/merge-big.test')
-rw-r--r-- | mysql-test/t/merge-big.test | 5 |
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; - |