diff options
author | vva@eagle.mysql.r18.ru <> | 2004-03-27 02:29:31 +0400 |
---|---|---|
committer | vva@eagle.mysql.r18.ru <> | 2004-03-27 02:29:31 +0400 |
commit | 8a66c13b34ba4c8454a87a292fd1d7f9ea1ab6fd (patch) | |
tree | 1c5e253563e466214850e1257016a6fabab0a821 /mysql-test/r/bdb-crash.result | |
parent | d1622a941d6dc6659b3930721f242e1ac51ad502 (diff) | |
download | mariadb-git-8a66c13b34ba4c8454a87a292fd1d7f9ea1ab6fd.tar.gz |
fixed bug #2342
"Running ANALYZE TABLE on bdb table inside a transaction hangs server thread"
Diffstat (limited to 'mysql-test/r/bdb-crash.result')
-rw-r--r-- | mysql-test/r/bdb-crash.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/bdb-crash.result b/mysql-test/r/bdb-crash.result index 8f5b8c08f1d..778890e85e3 100644 --- a/mysql-test/r/bdb-crash.result +++ b/mysql-test/r/bdb-crash.result @@ -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; |