mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
f5692f21f9
the InnoDB Plugin tests are now in mysql-test/suite/innodb_plugin. Move InnoDB tests to the innodb suite at mysql-test/suite/innodb.
10 lines
326 B
Text
10 lines
326 B
Text
-- source include/have_innodb.inc
|
|
|
|
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;
|