summaryrefslogtreecommitdiff
path: root/mysql-test/t/bdb-alter-table-1.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/bdb-alter-table-1.test')
-rw-r--r--mysql-test/t/bdb-alter-table-1.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/bdb-alter-table-1.test b/mysql-test/t/bdb-alter-table-1.test
index 7537cc358e8..18b6c70758f 100644
--- a/mysql-test/t/bdb-alter-table-1.test
+++ b/mysql-test/t/bdb-alter-table-1.test
@@ -6,7 +6,7 @@
drop table if exists t1;
--enable_warnings
-create table t1(objid BIGINT not null, tablename varchar(64), oid BIGINT not null, test BIGINT, PRIMARY KEY (objid), UNIQUE(tablename)) type=BDB;
+create table t1(objid BIGINT not null, tablename varchar(64), oid BIGINT not null, test BIGINT, PRIMARY KEY (objid), UNIQUE(tablename)) engine=BDB;
insert into t1 values(1, 't1',4,9);
insert into t1 values(2, 'metatable',1,9);
insert into t1 values(3, 'metaindex',1,9 );