1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00
"Running ANALYZE TABLE on bdb table inside a transaction hangs server thread"
This commit is contained in:
vva@eagle.mysql.r18.ru
2004-03-27 02:29:31 +04:00
parent d1622a941d
commit 8a66c13b34
5 changed files with 56 additions and 0 deletions

View File

@ -30,3 +30,10 @@ ChargeID ServiceID ChargeDate ChargeAmount FedTaxes ProvTaxes ChargeStatus Charg
1 1 2001-03-01 1.00 1.00 1.00 New blablabla NULL now
2 1 2001-03-01 1.00 1.00 1.00 New NULL NULL now
drop table t1;
create table t1 (a int) engine=bdb;
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
drop table t1;