summaryrefslogtreecommitdiff
path: root/mysql-test/r/merge-big.result
diff options
context:
space:
mode:
authorSergey Vojtovich <svoj@mariadb.org>2016-03-26 00:16:36 +0400
committerSergey Vojtovich <svoj@mariadb.org>2016-03-27 17:39:30 +0400
commit4ee310cfaee1339d2508cc6a62d9685e1f14af69 (patch)
treecbcf9e3b8aec9f014c1a8e9d8bdbc31976d797d6 /mysql-test/r/merge-big.result
parentfcde9a889dc12b21823b9c4e1776d0329a99c48d (diff)
downloadmariadb-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/r/merge-big.result')
-rw-r--r--mysql-test/r/merge-big.result9
1 files changed, 5 insertions, 4 deletions
diff --git a/mysql-test/r/merge-big.result b/mysql-test/r/merge-big.result
index b17140a7c79..3b6e116986e 100644
--- a/mysql-test/r/merge-big.result
+++ b/mysql-test/r/merge-big.result
@@ -6,11 +6,11 @@ drop table if exists t1,t2,t3,t4,t5,t6;
#
CREATE TABLE t1 (c1 INT) ENGINE= MyISAM;
LOCK TABLE t1 WRITE;
-# connection con1
+connect con1,localhost,root,,;
SET @orig_debug=@@debug;
SET GLOBAL debug_dbug="+d,sleep_open_and_lock_after_open";
INSERT INTO t1 VALUES (1);
-# connection default
+connection default;
# Let INSERT go into thr_multi_lock().
# Kick INSERT out of thr_multi_lock().
FLUSH TABLES;
@@ -21,7 +21,8 @@ FLUSH TABLES;
SELECT * FROM t1;
c1
UNLOCK TABLES;
-# connection con1
+connection con1;
SET GLOBAL debug_dbug=@orig_debug;
-# connection default
+disconnect con1;
+connection default;
DROP TABLE t1;