summaryrefslogtreecommitdiff
path: root/mysql-test/t/bdb.test
diff options
context:
space:
mode:
authorunknown <jimw@mysql.com>2006-01-06 08:34:55 -0800
committerunknown <jimw@mysql.com>2006-01-06 08:34:55 -0800
commitbf1ebe98dfe51c7f7b13e783cd13d8362a26afbf (patch)
tree2051ec4c25b53bd0dfb5b8f24c5b125bbc2c45f9 /mysql-test/t/bdb.test
parentf3915a41647978a71aedb209a28f8b61f1dd4cd5 (diff)
parent4d09673065bba0434909ad09b7f9ecd82752c8db (diff)
downloadmariadb-git-bf1ebe98dfe51c7f7b13e783cd13d8362a26afbf.tar.gz
Merge mysql.com:/home/jimw/my/mysql-5.0-14212
into mysql.com:/home/jimw/my/mysql-5.0-clean sql/ha_ndbcluster.cc: Auto merged sql/handler.cc: Auto merged mysql-test/r/bdb.result: Resolve conflict mysql-test/t/bdb.test: Resolve conflict
Diffstat (limited to 'mysql-test/t/bdb.test')
-rw-r--r--mysql-test/t/bdb.test9
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/t/bdb.test b/mysql-test/t/bdb.test
index d3068b29e28..d017d91bfb1 100644
--- a/mysql-test/t/bdb.test
+++ b/mysql-test/t/bdb.test
@@ -1010,4 +1010,13 @@ create table t1 (a varchar(255) character set utf8,
e varchar(255) character set utf8,
key (a,b,c,d,e)) engine=bdb;
+#
+# Bug #14212: Server crash after COMMIT + ALTER TABLE
+#
+set autocommit=0;
+create table t1 (a int) engine=bdb;
+commit;
+alter table t1 add primary key(a);
+drop table t1;
+
--echo End of 5.0 tests