Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
72994d64
Commit
72994d64
authored
Feb 17, 2017
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert the MDEV-4396 tweak to innodb.innodb_bug14676111.
MDEV-11802 aims to fix the root cause instead.
parent
343ba585
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
15 deletions
+2
-15
mysql-test/suite/innodb/r/innodb_bug14676111.result
mysql-test/suite/innodb/r/innodb_bug14676111.result
+1
-4
mysql-test/suite/innodb/t/innodb_bug14676111-master.opt
mysql-test/suite/innodb/t/innodb_bug14676111-master.opt
+0
-1
mysql-test/suite/innodb/t/innodb_bug14676111.test
mysql-test/suite/innodb/t/innodb_bug14676111.test
+1
-10
No files found.
mysql-test/suite/innodb/r/innodb_bug14676111.result
View file @
72994d64
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);
...
...
mysql-test/suite/innodb/t/innodb_bug14676111-master.opt
deleted
100644 → 0
View file @
343ba585
--loose-innodb-purge-threads=0
mysql-test/suite/innodb/t/innodb_bug14676111.test
View file @
72994d64
...
...
@@ -10,20 +10,12 @@ if (`select count(*)=0 from information_schema.global_variables where variable_n
--
disable_query_log
set
@
old_innodb_limit_optimistic_insert_debug
=
@@
innodb_limit_optimistic_insert_debug
;
set
@
old_innodb_stats_persistent
=
@@
innodb_stats_persistent
;
set
@
old_innodb_undo_logs
=
@@
innodb_undo_logs
;
# Limit undo segments for stable progress of purge.
set
global
innodb_undo_logs
=
1
;
--
enable_query_log
--
disable_warnings
drop
table
if
exists
t1
;
--
enable_warnings
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
;
#
# make 4 leveled straight tree
...
...
@@ -139,6 +131,5 @@ drop table t1;
--
disable_query_log
set
global
innodb_limit_optimistic_insert_debug
=
@
old_innodb_limit_optimistic_insert_debug
;
set
global
innodb_stats_persistent
=
@
old_innodb_stats_persistent
;
set
global
innodb_undo_logs
=
@
old_innodb_undo_logs
;
--
enable_query_log
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment