Commit 04e879e7 authored by unknown's avatar unknown

some cleanup of last patch for BUG #2342


mysql-test/t/bdb-crash.test:
  added newline
sql/ha_berkeley.cc:
  added a commet
parent 2e3950b2
...@@ -45,4 +45,4 @@ create table t1 (a int) engine=bdb; ...@@ -45,4 +45,4 @@ create table t1 (a int) engine=bdb;
set autocommit=0; set autocommit=0;
insert into t1 values(1); insert into t1 values(1);
analyze table t1; analyze table t1;
drop table t1; drop table t1;
\ No newline at end of file
...@@ -2101,6 +2101,15 @@ int ha_berkeley::analyze(THD* thd, HA_CHECK_OPT* check_opt) ...@@ -2101,6 +2101,15 @@ int ha_berkeley::analyze(THD* thd, HA_CHECK_OPT* check_opt)
uint i; uint i;
DB_TXN_STAT *txn_stat_ptr= 0; DB_TXN_STAT *txn_stat_ptr= 0;
/*
Original bdb documentation says:
"The DB->stat method cannot be transaction-protected.
For this reason, it should be called in a thread of
control that has no open cursors or active transactions."
So, let's check if there are any changes have been done since
the beginning of the transaction..
*/
/* /*
If it's a merge conflict here (4.0->4.1), please ignore it! If it's a merge conflict here (4.0->4.1), please ignore it!
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment