diff options
Diffstat (limited to 'mysql-test/r/lock_tables_lost_commit.result')
-rw-r--r-- | mysql-test/r/lock_tables_lost_commit.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/lock_tables_lost_commit.result b/mysql-test/r/lock_tables_lost_commit.result new file mode 100644 index 00000000000..ccf56793f45 --- /dev/null +++ b/mysql-test/r/lock_tables_lost_commit.result @@ -0,0 +1,8 @@ +drop table if exists t1; +create table t1(a int) type=innodb; +lock tables t1 write; +insert into t1 values(10); +select * from t1; +a +10 +drop table t1; |