diff options
Diffstat (limited to 'mysql-test/suite/innodb/r/innodb_bug45357.result')
-rw-r--r-- | mysql-test/suite/innodb/r/innodb_bug45357.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb/r/innodb_bug45357.result b/mysql-test/suite/innodb/r/innodb_bug45357.result new file mode 100644 index 00000000..7adeff20 --- /dev/null +++ b/mysql-test/suite/innodb/r/innodb_bug45357.result @@ -0,0 +1,7 @@ +set session transaction isolation level read committed; +create table bug45357(a int, b int,key(b))engine=innodb; +insert into bug45357 values (25170,6122); +update bug45357 set a=1 where b=30131; +delete from bug45357 where b < 20996; +delete from bug45357 where b < 7001; +drop table bug45357; |