mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
7ceb29ff17
layout as we always had in trees containing only the builtin 2) win\configure.js WITH_INNOBASE_STORAGE_ENGINE still works. storage/innobase/CMakeLists.txt: fix to new directory name (and like 5.1) storage/innobase/Makefile.am: fix to new directory name (and like 5.1) storage/innobase/handler/ha_innodb.cc: fix to new directory name (and like 5.1) storage/innobase/plug.in: fix to new directory name (and like 5.1)
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;
|