summaryrefslogtreecommitdiff
path: root/mysql-test/t/bdb-deadlock.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/bdb-deadlock.test')
-rw-r--r--mysql-test/t/bdb-deadlock.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/bdb-deadlock.test b/mysql-test/t/bdb-deadlock.test
index 2453c42e49a..d86403fcffc 100644
--- a/mysql-test/t/bdb-deadlock.test
+++ b/mysql-test/t/bdb-deadlock.test
@@ -15,8 +15,8 @@ connect (con2,localhost,root,,);
drop table if exists t1,t2;
--enable_warnings
connection con1;
-create table t1 (id integer, x integer) type=BDB;
-create table t2 (id integer, x integer) type=BDB;
+create table t1 (id integer, x integer) engine=BDB;
+create table t2 (id integer, x integer) engine=BDB;
insert into t1 values(0, 0);
insert into t2 values(0, 0);
set autocommit=0;