diff options
author | unknown <ram@mysql.r18.ru> | 2002-11-12 19:21:11 +0400 |
---|---|---|
committer | unknown <ram@mysql.r18.ru> | 2002-11-12 19:21:11 +0400 |
commit | ccf7226c2759bf6549c2cdd615ef55e95318520b (patch) | |
tree | 9554f1b3bb1e49fd2fc11a651de8564c3eaf90b1 /mysql-test/r/bdb-deadlock.result | |
parent | 86f1a1e0d05cb262ccf64e503ca14595adbd2886 (diff) | |
download | mariadb-git-ccf7226c2759bf6549c2cdd615ef55e95318520b.tar.gz |
bdb-deadlock test: added reap commands
Diffstat (limited to 'mysql-test/r/bdb-deadlock.result')
-rw-r--r-- | mysql-test/r/bdb-deadlock.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/bdb-deadlock.result b/mysql-test/r/bdb-deadlock.result index 74798a34a53..55b3d3ea2a5 100644 --- a/mysql-test/r/bdb-deadlock.result +++ b/mysql-test/r/bdb-deadlock.result @@ -9,23 +9,23 @@ set autocommit=0; update t2 set x = 1 where id = 0; select x from t1 where id = 0; select x from t2 where id = 0; -commit; Deadlock found when trying to get lock; Try restarting transaction commit; x 1 +commit; select * from t1; +id x +0 1 select * from t2; id x 0 1 commit; +select * from t1; id x 0 1 -select * from t1; select * from t2; id x 0 1 commit; -id x -0 1 drop table t1,t2; |