diff options
author | unknown <serg@serg.mylan> | 2004-11-04 22:37:38 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-11-04 22:37:38 +0100 |
commit | fac533bb14bf2fd32edafb0d1d2792dd33d403de (patch) | |
tree | 141d3059ea545bbd4950d26872ac791f570c781e /mysql-test/r | |
parent | 7b72401c5f469028b374a69783dd8fc5bbf84966 (diff) | |
download | mariadb-git-fac533bb14bf2fd32edafb0d1d2792dd33d403de.tar.gz |
new test for bdb
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/bdb.result | 7 |
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; |