diff options
author | Sergey Vojtovich <svoj@mariadb.org> | 2016-03-25 20:51:22 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2016-03-31 10:11:16 +0400 |
commit | 282497dd6d1049b4fb963641504c2733752845a7 (patch) | |
tree | 7288d17c29fbbe9ac47ec51f6988fb954f59a361 /mysql-test/r/non_blocking_api.result | |
parent | 5052e2479e873461bebfcedbc674bbaf57d3c968 (diff) | |
download | mariadb-git-282497dd6d1049b4fb963641504c2733752845a7.tar.gz |
MDEV-6720 - enable connection log in mysqltest by default
Diffstat (limited to 'mysql-test/r/non_blocking_api.result')
-rw-r--r-- | mysql-test/r/non_blocking_api.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/non_blocking_api.result b/mysql-test/r/non_blocking_api.result index 248e372593b..4cb5c270f38 100644 --- a/mysql-test/r/non_blocking_api.result +++ b/mysql-test/r/non_blocking_api.result @@ -1,4 +1,7 @@ drop table if exists t1; +connect con_nonblock,localhost,root,,test; +connect con_normal,localhost,root,,test; +connection con_nonblock; CREATE TABLE t1 (a INT PRIMARY KEY); INSERT INTO t1 VALUES (1); SELECT * FROM t1; @@ -7,4 +10,5 @@ a SELECT * FROM t1; a 1 +connection con_normal; DROP TABLE t1; |