diff options
author | tsmith/tim@siva.hindu.god <> | 2006-10-23 23:41:07 -0600 |
---|---|---|
committer | tsmith/tim@siva.hindu.god <> | 2006-10-23 23:41:07 -0600 |
commit | aeced431e309bf3a019c0869bba8e7ac15e95fea (patch) | |
tree | b815e7b7375e547bf047b6c3eb460d93b7f3d761 /mysql-test/include/mix1.inc | |
parent | 99b572b9ebdcc0fe1037bd764d58cf35fca2090d (diff) | |
parent | fd759850aab612ba228e69f111024bc8d7b5cdea (diff) | |
download | mariadb-git-aeced431e309bf3a019c0869bba8e7ac15e95fea.tar.gz |
Merge siva.hindu.god:/usr/home/tim/m/bk/g51
into siva.hindu.god:/usr/home/tim/m/bk/51
Diffstat (limited to 'mysql-test/include/mix1.inc')
-rw-r--r-- | mysql-test/include/mix1.inc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mysql-test/include/mix1.inc b/mysql-test/include/mix1.inc index 57070d40c5c..15d58862b11 100644 --- a/mysql-test/include/mix1.inc +++ b/mysql-test/include/mix1.inc @@ -154,6 +154,26 @@ SELECT `id1` FROM `t1` WHERE `id1` NOT IN (SELECT `id1` FROM `t2` WHERE `id2` = DROP TABLE t1, t2; # +# Bug #22728 - Handler_rollback value is growing +# +flush status; +create table t1 (c1 int) engine=innodb; +connect (con1,localhost,root,,); +connect (con2,localhost,root,,); +connection con2; +handler t1 open; +handler t1 read first; +disconnect con2; +connection con1; +show /*!50002 GLOBAL */ status like 'Handler_rollback'; +connection default; +drop table t1; +disconnect con1; + +--echo End of 4.1 tests + + +# # Bug #12882 min/max inconsistent on empty table # |