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
27b6b262
Commit
27b6b262
authored
Jan 15, 2018
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Plain Diff
Merge 10.1 into 10.2
parents
85aea5a1
4794e5b0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
mysql-test/suite/innodb/r/innodb-lru-force-no-free-page.result
...-test/suite/innodb/r/innodb-lru-force-no-free-page.result
+3
-2
mysql-test/suite/innodb/t/innodb-lru-force-no-free-page.test
mysql-test/suite/innodb/t/innodb-lru-force-no-free-page.test
+4
-4
No files found.
mysql-test/suite/innodb/r/innodb-lru-force-no-free-page.result
View file @
27b6b262
call mtr.add_suppression("\\[Warning\\] InnoDB: Difficult to find free blocks in the buffer pool.");
call mtr.add_suppression("InnoDB: Difficult to find free blocks in the buffer pool");
SET @saved_debug = @@SESSION.debug_dbug;
SET SESSION debug_dbug="+d,ib_lru_force_no_free_page";
CREATE TABLE t1 (j LONGBLOB) ENGINE = InnoDB;
BEGIN;
INSERT INTO t1 VALUES (repeat('abcdefghijklmnopqrstuvwxyz',200));
COMMIT;
SET
SESSION debug_dbug=""
;
SET
debug_dbug = @saved_debug
;
DROP TABLE t1;
FOUND 1 /InnoDB: Difficult to find free blocks / in mysqld.1.err
mysql-test/suite/innodb/t/innodb-lru-force-no-free-page.test
View file @
27b6b262
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_debug
.
inc
--
source
include
/
not_embedded
.
inc
call
mtr
.
add_suppression
(
"
\\
[Warning
\\
] InnoDB: Difficult to find free blocks in the buffer pool.
"
);
call
mtr
.
add_suppression
(
"
InnoDB: Difficult to find free blocks in the buffer pool
"
);
SET
@
saved_debug
=
@@
SESSION
.
debug_dbug
;
SET
SESSION
debug_dbug
=
"+d,ib_lru_force_no_free_page"
;
CREATE
TABLE
t1
(
j
LONGBLOB
)
ENGINE
=
InnoDB
;
...
...
@@ -10,15 +12,13 @@ BEGIN;
INSERT
INTO
t1
VALUES
(
repeat
(
'abcdefghijklmnopqrstuvwxyz'
,
200
));
COMMIT
;
SET
SESSION
debug_dbug
=
""
;
SET
debug_dbug
=
@
saved_debug
;
DROP
TABLE
t1
;
#
# There should be only one message
#
let
SEARCH_RANGE
=
-
50000
;
let
SEARCH_FILE
=
$MYSQLTEST_VARDIR
/
log
/
mysqld
.
1.
err
;
--
let
SEARCH_PATTERN
=
InnoDB
:
Difficult
to
find
free
blocks
--
source
include
/
search_pattern_in_file
.
inc
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