summaryrefslogtreecommitdiff
path: root/mysql-test/r/bdb.result
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2002-01-16 23:02:26 +0200
committermonty@hundin.mysql.fi <>2002-01-16 23:02:26 +0200
commitdf5f8c18eb9bd606ad5c39eec97537f2756b0e19 (patch)
tree018279aec359563ce57663242828891f44489682 /mysql-test/r/bdb.result
parentbea12d761ae0e3f72b8819c7a52a75d0dd4788c1 (diff)
downloadmariadb-git-df5f8c18eb9bd606ad5c39eec97537f2756b0e19.tar.gz
Move HA_EXTRA_NO_READCHECK to ha_open
Fixed bug in multi-table-delete
Diffstat (limited to 'mysql-test/r/bdb.result')
-rw-r--r--mysql-test/r/bdb.result22
1 files changed, 22 insertions, 0 deletions
diff --git a/mysql-test/r/bdb.result b/mysql-test/r/bdb.result
index e553105fcc7..7374e936c36 100644
--- a/mysql-test/r/bdb.result
+++ b/mysql-test/r/bdb.result
@@ -1101,3 +1101,25 @@ INFO_NOTE
select INFO_NOTE from t1 where STR_DATE > '20010610';
INFO_NOTE
drop table t1;
+create table t1 (a int not null, b int, primary key (a)) type =bdb;
+create table t2 (a int not null, b int, primary key (a)) type =bdb;
+insert into t1 values (2, 3),(1, 7),(10, 7);
+insert into t2 values (2, 3),(1, 7),(10, 7);
+select * from t1;
+a b
+1 7
+2 3
+10 7
+select * from t2;
+a b
+1 7
+2 3
+10 7
+delete t1, t2 from t1, t2 where t1.a = t2.a;
+select * from t1;
+a b
+select * from t2;
+a b
+select * from t2;
+a b
+drop table t1,t2;