summaryrefslogtreecommitdiff
path: root/mysql-test/r/lock_tables_lost_commit.result
blob: df4b6eff5cf984bdebdd485fa3c4a3f20493c187 (plain)
1
2
3
4
5
6
7
8
DROP TABLE IF EXISTS t1;
CREATE TABLE t1(a INT) ENGINE=innodb;
LOCK TABLES t1 WRITE;
INSERT INTO t1 VALUES(10);
SELECT * FROM t1;
a
10
DROP TABLE t1;