summaryrefslogtreecommitdiff
path: root/mysql-test/t/dirty_close.test
blob: 3ed22f26d5be8c0177932f3a5d12628c8787d5af (plain)
1
2
3
4
5
6
7
8
9
10
connect (con1,localhost,root,,);
connect (con2,localhost,root,,);
connection con1;
dirty_close con1;
connection con2;
drop table if exists t1;
create table t1 (n int);
insert into t1 values (1),(2),(3);
select * from t1;
drop table t1;