mariadb/mysql-test/suite/innodb_plugin/t/innodb_bug45357.test

11 lines
333 B
Text
Raw Normal View History

-- source include/have_innodb_plugin.inc
2009-07-30 14:42:56 +02:00
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;