summaryrefslogtreecommitdiff
path: root/mysql-test/r/non_blocking_api.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/non_blocking_api.result')
-rw-r--r--mysql-test/r/non_blocking_api.result4
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;