summaryrefslogtreecommitdiff
path: root/mysql-test/main/non_blocking_api.result
blob: 4cb5c270f38585a224448a0383c38c8b583564b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;