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.test3
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/bdb-alter-table-1.test b/mysql-test/t/bdb-alter-table-1.test
index 5861c2fe0bf..7537cc358e8 100644
--- a/mysql-test/t/bdb-alter-table-1.test
+++ b/mysql-test/t/bdb-alter-table-1.test
@@ -2,7 +2,10 @@
# Test of problem when shutting down mysqld at once after ALTER TABLE
#
-- source include/have_bdb.inc
+--disable_warnings
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;
insert into t1 values(1, 't1',4,9);
insert into t1 values(2, 'metatable',1,9);