blob: f1c2c88ae830c8ab2c61f98f532778e10e56fd77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
connect (con1,localhost,root,,);
connect (con2,localhost,root,,);
connection con1;
dirty_close con1;
connection con2;
--disable_warnings
drop table if exists t1;
--enable_warnings
create table t1 (n int);
insert into t1 values (1),(2),(3);
select * from t1;
drop table t1;
# End of 4.1 tests
|