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
ff40ccb8
Commit
ff40ccb8
authored
Feb 04, 2008
by
mkindahl@dl145h.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Masking out some more errors and warnings that are benign.
parent
e4939065
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
mysql-test/include/delete_anonymous_users.inc
mysql-test/include/delete_anonymous_users.inc
+2
-0
mysql-test/lib/mtr_report.pl
mysql-test/lib/mtr_report.pl
+10
-3
No files found.
mysql-test/include/delete_anonymous_users.inc
View file @
ff40ccb8
# Remove anonymous users added by add_anonymous_users.inc
disable_warnings
;
disable_query_log
;
DELETE
FROM
mysql
.
user
where
host
=
'localhost'
and
user
=
''
;
FLUSH
PRIVILEGES
;
enable_query_log
;
enable_warnings
;
mysql-test/lib/mtr_report.pl
View file @
ff40ccb8
...
...
@@ -375,9 +375,16 @@ sub mtr_report_stats ($) {
/Slave: Cannot add or update a child row: a foreign key constraint fails .* Error_code: 1452/
))
or
# rpl_skip_error produce an error which is skipped (slave does not stop)
(
$testname
eq
'
rpl.rpl_skip_error
'
and
/Failed to write to mysql\.general_log/
)
# rpl_skip_error and binlog_killed_simulate produce an error which is skipped (slave does not stop)
((
$testname
eq
'
rpl.rpl_skip_error
'
or
$testname
eq
'
binlog.binlog_killed_simulate
')
and
(
/Failed to write to mysql\.general_log/
))
or
# rpl_temporary has an error on slave that can be ignored
(
$testname
eq
'
rpl.rpl_temporary
'
and
(
/Slave: Can\'t find record in \'user\' Error_code: 1032/
))
)
{
next
;
# Skip these lines
...
...
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