File tree Expand file tree Collapse file tree 3 files changed +2
-15
lines changed Expand file tree Collapse file tree 3 files changed +2
-15
lines changed Original file line number Diff line number Diff line change 1
- drop table if exists t1;
2
- call mtr.add_suppression("option 'innodb-purge-threads': unsigned value 0 adjusted to*");
3
- set global innodb_stats_persistent = false;
4
- CREATE TABLE t1 (a int not null primary key) engine=InnoDB;
1
+ CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB STATS_PERSISTENT=0;
5
2
set global innodb_limit_optimistic_insert_debug = 2;
6
3
insert into t1 values (1);
7
4
insert into t1 values (5);
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -10,20 +10,12 @@ if (`select count(*)=0 from information_schema.global_variables where variable_n
10
10
11
11
--disable_query_log
12
12
set @old_innodb_limit_optimistic_insert_debug = @@innodb_limit_optimistic_insert_debug;
13
- set @old_innodb_stats_persistent = @@innodb_stats_persistent;
14
13
set @old_innodb_undo_logs = @@innodb_undo_logs;
15
14
# Limit undo segments for stable progress of purge.
16
15
set global innodb_undo_logs = 1;
17
16
--enable_query_log
18
- --disable_warnings
19
- drop table if exists t1;
20
- --enable_warnings
21
17
22
- call mtr.add_suppression("option 'innodb-purge-threads': unsigned value 0 adjusted to*");
23
-
24
- set global innodb_stats_persistent = false;
25
-
26
- CREATE TABLE t1 (a int not null primary key) engine=InnoDB;
18
+ CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB STATS_PERSISTENT=0;
27
19
28
20
#
29
21
# make 4 leveled straight tree
@@ -139,6 +131,5 @@ drop table t1;
139
131
140
132
--disable_query_log
141
133
set global innodb_limit_optimistic_insert_debug = @old_innodb_limit_optimistic_insert_debug;
142
- set global innodb_stats_persistent = @old_innodb_stats_persistent;
143
134
set global innodb_undo_logs = @old_innodb_undo_logs;
144
135
--enable_query_log
You can’t perform that action at this time.
0 commit comments