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
d848fcad
Commit
d848fcad
authored
Apr 07, 2020
by
Daniel Black
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-22010: mtr, "mariadbd" exists in mysys error messages
Also executable can change for jemalloc.
parent
dcc2eaeb
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+3
-3
mysql-test/suite/encryption/r/innodb-force-corrupt.result
mysql-test/suite/encryption/r/innodb-force-corrupt.result
+1
-1
mysql-test/suite/encryption/t/innodb-force-corrupt.test
mysql-test/suite/encryption/t/innodb-force-corrupt.test
+1
-1
No files found.
mysql-test/mysql-test-run.pl
View file @
d848fcad
...
...
@@ -4672,7 +4672,7 @@ sub extract_warning_lines ($$) {
my
@patterns
=
(
qr/^Warning|
mysqld
: Warning|\[Warning\]/
,
qr/^Warning|
(mysqld|mariadbd)
: Warning|\[Warning\]/
,
qr/^Error:|\[ERROR\]/
,
qr/^==\d+==\s+\S/
,
# valgrind errors
qr/InnoDB: Warning|InnoDB: Error/
,
...
...
@@ -4747,7 +4747,7 @@ sub extract_warning_lines ($$) {
qr|Access denied for user|
,
qr|Aborted connection|
,
qr|table.*is full|
,
qr
|\[ERROR\] mysqld: \Z|
,
# Warning from Aria recovery
qr
/\[ERROR\] (mysqld|mariadbd): \Z/
,
# Warning from Aria recovery
qr|Linux Native AIO|
,
# warning that aio does not work on /dev/shm
qr|InnoDB: io_setup\(\) attempt|
,
qr|InnoDB: io_setup\(\) failed with EAGAIN|
,
...
...
@@ -6279,7 +6279,7 @@ sub valgrind_arguments {
my
$exe
=
shift
;
# Ensure the jemalloc works with mysqld
if
(
$$exe
=~
/
mysqld
/
)
if
(
$$exe
=~
/
(mysqld|mariadbd)
/
)
{
my
%
somalloc
=
(
'
system jemalloc
'
=>
'
libjemalloc*
',
...
...
mysql-test/suite/encryption/r/innodb-force-corrupt.result
View file @
d848fcad
call mtr.add_suppression("InnoDB: Table `test`\\.`t[13]` (has an unreadable root page|is corrupted)");
call mtr.add_suppression("InnoDB: Encrypted page \\[page id: space=\\d+, page number=[36]\\] in file .*test.t[123]\\.ibd looks corrupted; key_version=");
call mtr.add_suppression("\\[ERROR\\] InnoDB: We detected index corruption in an InnoDB type table");
call mtr.add_suppression("\\[ERROR\\]
mysqld
.*: Index for table 't2' is corrupt; try to repair it");
call mtr.add_suppression("\\[ERROR\\]
(mysqld|mariadb)
.*: Index for table 't2' is corrupt; try to repair it");
SET GLOBAL innodb_file_per_table = ON;
set global innodb_compression_algorithm = 1;
# Create and populate tables to be corrupted
...
...
mysql-test/suite/encryption/t/innodb-force-corrupt.test
View file @
d848fcad
...
...
@@ -10,7 +10,7 @@
call
mtr
.
add_suppression
(
"InnoDB: Table `test`
\\
.`t[13]` (has an unreadable root page|is corrupted)"
);
call
mtr
.
add_suppression
(
"InnoDB: Encrypted page
\\
[page id: space=
\\
d+, page number=[36]
\\
] in file .*test.t[123]
\\
.ibd looks corrupted; key_version="
);
call
mtr
.
add_suppression
(
"
\\
[ERROR
\\
] InnoDB: We detected index corruption in an InnoDB type table"
);
call
mtr
.
add_suppression
(
"
\\
[ERROR
\\
]
mysqld
.*: Index for table 't2' is corrupt; try to repair it"
);
call
mtr
.
add_suppression
(
"
\\
[ERROR
\\
]
(mysqld|mariadb)
.*: Index for table 't2' is corrupt; try to repair it"
);
SET
GLOBAL
innodb_file_per_table
=
ON
;
set
global
innodb_compression_algorithm
=
1
;
...
...
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