diff options
author | unknown <monty@hundin.mysql.fi> | 2002-01-16 23:02:26 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-01-16 23:02:26 +0200 |
commit | 088582035efe96857e6453a72443ae1d8049fc3a (patch) | |
tree | 018279aec359563ce57663242828891f44489682 /mysql-test/r/bdb.result | |
parent | 40c146f6a22e7397d9e5d1880b29f2c88fb39eda (diff) | |
download | mariadb-git-088582035efe96857e6453a72443ae1d8049fc3a.tar.gz |
Move HA_EXTRA_NO_READCHECK to ha_open
Fixed bug in multi-table-delete
Docs/manual.texi:
Changelog
include/mysql_com.h:
Define MAX_CHAR_WIDTH
myisam/mi_extra.c:
Cleanup
mysql-test/r/bdb.result:
Bug test
mysql-test/r/group_by.result:
Bug test
mysql-test/t/bdb.test:
Bug test
mysql-test/t/group_by.test:
Bug test
sql/ha_berkeley.cc:
More debug statements
sql/handler.cc:
Move HA_EXTRA_NO_READCHECK to ha_open
sql/records.cc:
More DBUG statements
sql/sql_analyse.cc:
Cleanup
sql/sql_base.cc:
Move HA_EXTRA_NO_READCHECK to ha_open
sql/sql_delete.cc:
Fixed bug in multi-table-delete
Cleanup
sql/sql_select.cc:
Move HA_EXTRA_NO_READCHECK to ha_open
sql/sql_update.cc:
Move HA_EXTRA_NO_READCHECK to ha_open
Diffstat (limited to 'mysql-test/r/bdb.result')
-rw-r--r-- | mysql-test/r/bdb.result | 22 |
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; |