summaryrefslogtreecommitdiff
path: root/mysql-test/r/dirty_close.result
blob: b49b72f1b95ae78bd4a69996d31d266d1c3bb991 (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;