1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Revert the MDEV-4396 tweak to innodb.innodb_bug14676111.

MDEV-11802 aims to fix the root cause instead.
This commit is contained in:
Marko Mäkelä
2017-02-17 10:36:50 +02:00
parent 343ba58562
commit 72994d6442
3 changed files with 2 additions and 15 deletions

View File

@@ -1,7 +1,4 @@
drop table if exists t1;
call mtr.add_suppression("option 'innodb-purge-threads': unsigned value 0 adjusted to*");
set global innodb_stats_persistent = false;
CREATE TABLE t1 (a int not null primary key) engine=InnoDB;
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB STATS_PERSISTENT=0;
set global innodb_limit_optimistic_insert_debug = 2;
insert into t1 values (1);
insert into t1 values (5);