diff options
author | monty@mysql.com <> | 2003-12-04 19:48:10 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2003-12-04 19:48:10 +0200 |
commit | e36fd284471674673e8489ba188976032df72b84 (patch) | |
tree | 721cf12953c4b852a0f72ba1e8d4f6f888cf8cd6 /mysql-test/r/bdb.result | |
parent | 132537accbd1f240b51b9aae8ba955ec095831c3 (diff) | |
download | mariadb-git-e36fd284471674673e8489ba188976032df72b84.tar.gz |
Allow space in service names
move bdb/innodb tests to right places
Diffstat (limited to 'mysql-test/r/bdb.result')
-rw-r--r-- | mysql-test/r/bdb.result | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/r/bdb.result b/mysql-test/r/bdb.result index ebc2866183c..05845df9dd3 100644 --- a/mysql-test/r/bdb.result +++ b/mysql-test/r/bdb.result @@ -1154,3 +1154,14 @@ x 7 6 drop table t1; +create table t1 ( c char(8) not null ) type=bdb; +insert into t1 values ('0'),('1'),('2'),('3'),('4'),('5'),('6'),('7'),('8'),('9'); +insert into t1 values ('A'),('B'),('C'),('D'),('E'),('F'); +alter table t1 add b char(8) not null; +alter table t1 add a char(8) not null; +alter table t1 add primary key (a,b,c); +update t1 set a=c, b=c; +create table t2 (c char(8) not null, b char(8) not null, a char(8) not null, primary key(a,b,c)) type=bdb; +insert into t2 select * from t1; +delete t1,t2 from t2,t1 where t1.a<'B' and t2.b=t1.b; +drop table t1,t2; |