File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
- call mtr.add_suppression("\\[Warning\\] InnoDB: Difficult to find free blocks in the buffer pool.");
1
+ call mtr.add_suppression("InnoDB: Difficult to find free blocks in the buffer pool");
2
+ SET @saved_debug = @@SESSION.debug_dbug;
2
3
SET SESSION debug_dbug="+d,ib_lru_force_no_free_page";
3
4
CREATE TABLE t1 (j LONGBLOB) ENGINE = InnoDB;
4
5
BEGIN;
5
6
INSERT INTO t1 VALUES (repeat('abcdefghijklmnopqrstuvwxyz',200));
6
7
COMMIT;
7
- SET SESSION debug_dbug="" ;
8
+ SET debug_dbug = @saved_debug ;
8
9
DROP TABLE t1;
9
10
FOUND /InnoDB: Difficult to find free blocks / in mysqld.1.err
Original file line number Diff line number Diff line change 1
1
--source include/have_innodb.inc
2
2
--source include/have_debug.inc
3
+ --source include/not_embedded.inc
3
4
4
- call mtr.add_suppression("\\[Warning\\] InnoDB: Difficult to find free blocks in the buffer pool. ");
5
+ call mtr.add_suppression("InnoDB: Difficult to find free blocks in the buffer pool");
5
6
7
+ SET @saved_debug = @@SESSION.debug_dbug;
6
8
SET SESSION debug_dbug="+d,ib_lru_force_no_free_page";
7
9
8
10
CREATE TABLE t1 (j LONGBLOB) ENGINE = InnoDB;
9
11
BEGIN;
10
12
INSERT INTO t1 VALUES (repeat('abcdefghijklmnopqrstuvwxyz',200));
11
13
COMMIT;
12
14
13
- SET SESSION debug_dbug="" ;
15
+ SET debug_dbug = @saved_debug ;
14
16
15
17
DROP TABLE t1;
16
18
@@ -21,4 +23,3 @@ let SEARCH_RANGE= -50000;
21
23
let SEARCH_FILE= $MYSQLTEST_VARDIR/log/mysqld.1.err;
22
24
--let SEARCH_PATTERN=InnoDB: Difficult to find free blocks
23
25
--source include/search_pattern_in_file.inc
24
-
You can’t perform that action at this time.
0 commit comments