diff options
author | Annamalai Gurusami <annamalai.gurusami@oracle.com> | 2012-03-16 12:10:54 +0530 |
---|---|---|
committer | Annamalai Gurusami <annamalai.gurusami@oracle.com> | 2012-03-16 12:10:54 +0530 |
commit | a2d6f81a02be9259a1befc0f8ab18d0e351ad47c (patch) | |
tree | 417c000b094de463807bfd83eca7f98f7b375d7a /mysql-test/suite/innodb/t | |
parent | 3c1bdb356d62bf207455cf5fb3206c1ca23034f8 (diff) | |
parent | 08f051df04675833ff819be306a204c0c9813e29 (diff) | |
download | mariadb-git-a2d6f81a02be9259a1befc0f8ab18d0e351ad47c.tar.gz |
Merging from mysql-5.1 to mysql-5.5.
Diffstat (limited to 'mysql-test/suite/innodb/t')
-rw-r--r-- | mysql-test/suite/innodb/t/innodb_bug11766634.test | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb/t/innodb_bug11766634.test b/mysql-test/suite/innodb/t/innodb_bug11766634.test index a830955c78a..91be4da0338 100644 --- a/mysql-test/suite/innodb/t/innodb_bug11766634.test +++ b/mysql-test/suite/innodb/t/innodb_bug11766634.test @@ -18,11 +18,13 @@ let $recs = 36262; --disable_query_log let $c = $recs; +start transaction; while ($c) { insert into t1 values ('Hello World'); dec $c; } +commit work; --enable_query_log perl; @@ -35,11 +37,13 @@ create table t1 (f1 char(255)) engine innodb; --disable_query_log let $c = $recs; +start transaction; while ($c) { insert into t1 values ('Hello World'); dec $c; } +commit work; --enable_query_log perl; |