summaryrefslogtreecommitdiff
path: root/mysql-test/t/lock_tables_lost_commit.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/lock_tables_lost_commit.test')
-rw-r--r--mysql-test/t/lock_tables_lost_commit.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/lock_tables_lost_commit.test b/mysql-test/t/lock_tables_lost_commit.test
index a12ee7369cb..a8a7a65bd76 100644
--- a/mysql-test/t/lock_tables_lost_commit.test
+++ b/mysql-test/t/lock_tables_lost_commit.test
@@ -4,7 +4,9 @@ connect (con1,localhost,root,,);
connect (con2,localhost,root,,);
connection con1;
+--disable_warnings
drop table if exists t1;
+--enable_warnings
create table t1(a int) type=innodb;
lock tables t1 write;
insert into t1 values(10);