mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
#231 change lock_uniq_key_empty test to work without the bulk insert avoidance patch
This commit is contained in:
parent
bfb0a4dd87
commit
749b290e64
2 changed files with 4 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
set default_storage_engine=tokudb;
|
||||
drop table if exists t;
|
||||
create table t (id int, unique key(id));
|
||||
set tokudb_prelock_empty=OFF;
|
||||
begin;
|
||||
insert into t values (1);
|
||||
begin;
|
||||
|
@ -13,6 +14,7 @@ id
|
|||
2
|
||||
drop table if exists t;
|
||||
create table t (id int not null, unique key(id));
|
||||
set tokudb_prelock_empty=OFF;
|
||||
begin;
|
||||
insert into t values (1);
|
||||
begin;
|
||||
|
|
|
@ -7,6 +7,7 @@ enable_warnings;
|
|||
|
||||
create table t (id int, unique key(id));
|
||||
connect(c1,localhost,root,,);
|
||||
set tokudb_prelock_empty=OFF; # disable the tokudb bulk loader
|
||||
begin;
|
||||
insert into t values (1);
|
||||
connect(c2,localhost,root,,);
|
||||
|
@ -24,6 +25,7 @@ drop table if exists t;
|
|||
|
||||
create table t (id int not null, unique key(id));
|
||||
connect(c1,localhost,root,,);
|
||||
set tokudb_prelock_empty=OFF; # disable the tokudb bulk loader
|
||||
begin;
|
||||
insert into t values (1);
|
||||
connect(c2,localhost,root,,);
|
||||
|
|
Loading…
Reference in a new issue