summaryrefslogtreecommitdiff
path: root/mysql-test/t/bdb.test
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2004-11-04 22:37:38 +0100
committerunknown <serg@serg.mylan>2004-11-04 22:37:38 +0100
commitfac533bb14bf2fd32edafb0d1d2792dd33d403de (patch)
tree141d3059ea545bbd4950d26872ac791f570c781e /mysql-test/t/bdb.test
parent7b72401c5f469028b374a69783dd8fc5bbf84966 (diff)
downloadmariadb-git-fac533bb14bf2fd32edafb0d1d2792dd33d403de.tar.gz
new test for bdb
Diffstat (limited to 'mysql-test/t/bdb.test')
-rw-r--r--mysql-test/t/bdb.test10
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/t/bdb.test b/mysql-test/t/bdb.test
index 069ec758ba2..744706bb5e4 100644
--- a/mysql-test/t/bdb.test
+++ b/mysql-test/t/bdb.test
@@ -929,3 +929,13 @@ SELECT id FROM t1 WHERE (list_id = 1) AND (term = "letterb");
SELECT id FROM t1 WHERE (list_id = 1) AND (term = "lettera");
SELECT id FROM t1 WHERE (list_id = 1) AND (term = "letterd");
DROP TABLE t1;
+
+#
+# alter temp table
+#
+create temporary table t1 (a int, primary key(a)) engine=bdb;
+select * from t1;
+alter table t1 add b int;
+select * from t1;
+drop table t1;
+