summaryrefslogtreecommitdiff
path: root/mysql-test/r/dirty_close.result
blob: c4fc19a35f85c27339e31d5ac6756cd912dd308a (plain)
1
2
3
4
5
6
7
8
9
drop table if exists t1;
create table t1 (n int);
insert into t1 values (1),(2),(3);
select * from t1;
n
1
2
3
drop table t1;