diff options
author | monty@mysql.com <> | 2004-03-29 19:21:53 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-03-29 19:21:53 +0300 |
commit | dc2f606fb85e0763a448132a147a816de829a8cb (patch) | |
tree | f51ea3945f84d672edc962cdfc11eab16f569fc5 /mysql-test/r/bdb-crash.result | |
parent | 505970b4a76f3d41f338d32d3d4382891ecb0ec3 (diff) | |
parent | 3cbab63af1e92677217be8106d5ed696b20521b1 (diff) | |
download | mariadb-git-dc2f606fb85e0763a448132a147a816de829a8cb.tar.gz |
Merge with 4.0 to get lastest bug fixes
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 778890e85e3..e414934b07c 100644 --- a/mysql-test/r/bdb-crash.result +++ b/mysql-test/r/bdb-crash.result @@ -37,3 +37,10 @@ analyze table t1; Table Op Msg_type Msg_text test.t1 analyze status Operation need committed state 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; |