1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Use transaction-aware DB->stat() call when doing 'ANALYZE TABLE' on

a table using the BDB storage engine. (Bug #14671)


mysql-test/r/bdb-crash.result:
  Update test result
sql/ha_berkeley.cc:
  Remove unnecessary code to skip 'ANALYZE TABLE' when transactions are in
  process, now that BDB supports passing the transaction to the DB->stat()
  method.
This commit is contained in:
unknown
2005-11-07 17:14:35 -08:00
parent 242e020a8d
commit 2c8545bfdb
2 changed files with 3 additions and 37 deletions

View File

@ -35,5 +35,5 @@ set autocommit=0;
insert into t1 values(1);
analyze table t1;
Table Op Msg_type Msg_text
test.t1 analyze status Operation need committed state
test.t1 analyze status OK
drop table t1;