diff options
Diffstat (limited to 'mysql-test/main/non_blocking_api.result')
-rw-r--r-- | mysql-test/main/non_blocking_api.result | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/main/non_blocking_api.result b/mysql-test/main/non_blocking_api.result new file mode 100644 index 00000000..4cb5c270 --- /dev/null +++ b/mysql-test/main/non_blocking_api.result @@ -0,0 +1,14 @@ +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; +a +1 +SELECT * FROM t1; +a +1 +connection con_normal; +DROP TABLE t1; |