diff options
author | serg@serg.mylan <> | 2004-06-24 19:47:53 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2004-06-24 19:47:53 +0200 |
commit | 1c37f8e20ec978a9ce80bb8ff8ed8a998e86f176 (patch) | |
tree | 163317ae3173be8d194c93b00e910d4271326a26 /mysql-test/r | |
parent | 28adaa438a82cf1d28f08fab5b45913785542561 (diff) | |
parent | 1ff21a9e64da5ce5b6bc7462e807711859617088 (diff) | |
download | mariadb-git-1c37f8e20ec978a9ce80bb8ff8ed8a998e86f176.tar.gz |
Merge bk-internal.mysql.com:/home/bk/mysql-4.1/
into serg.mylan:/usr/home/serg/Abk/mysql-4.1
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/bdb.result | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mysql-test/r/bdb.result b/mysql-test/r/bdb.result index f15862be5db..cc6a974b192 100644 --- a/mysql-test/r/bdb.result +++ b/mysql-test/r/bdb.result @@ -1190,3 +1190,23 @@ exists (select 'two' from t1 where 'two' = outer_table.b); b drop table t1; set autocommit=1; +create table t1(a int primary key, b varchar(30)) engine=bdb; +insert into t1 values (1,'one'), (2,'two'), (3,'three'), (4,'four'); +create table t2 like t1; +insert t2 select * from t1; +select a from t1 where a in (select a from t2); +a +1 +2 +3 +4 +delete from t2; +insert into t2 (a, b) +select a, b from t1 where (a, b) in (select a, b from t1); +select * from t2; +a b +1 one +2 two +3 three +4 four +drop table t1, t2; |