summaryrefslogtreecommitdiff
path: root/mysql-test/r/bdb.result
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/r/bdb.result
parent7b72401c5f469028b374a69783dd8fc5bbf84966 (diff)
downloadmariadb-git-fac533bb14bf2fd32edafb0d1d2792dd33d403de.tar.gz
new test for bdb
Diffstat (limited to 'mysql-test/r/bdb.result')
-rw-r--r--mysql-test/r/bdb.result7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/bdb.result b/mysql-test/r/bdb.result
index 473ac0116cc..e7b6ce37882 100644
--- a/mysql-test/r/bdb.result
+++ b/mysql-test/r/bdb.result
@@ -1284,3 +1284,10 @@ SELECT id FROM t1 WHERE (list_id = 1) AND (term = "letterd");
id
4
DROP TABLE t1;
+create temporary table t1 (a int, primary key(a)) engine=bdb;
+select * from t1;
+a
+alter table t1 add b int;
+select * from t1;
+a b
+drop table t1;