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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
d956281e
Commit
d956281e
authored
Feb 08, 2008
by
kostja@dipika.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't complain about a failure to write a log message if we were
simply killed.
parent
209d3d2e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sql/log.cc
sql/log.cc
+2
-2
No files found.
sql/log.cc
View file @
d956281e
...
...
@@ -441,7 +441,7 @@ bool Log_to_csv_event_handler::
result
=
FALSE
;
err:
if
(
result
)
if
(
result
&&
!
thd
->
killed
)
sql_print_error
(
"Failed to write to mysql.general_log: %s"
,
error_handler
.
message
());
...
...
@@ -639,7 +639,7 @@ bool Log_to_csv_event_handler::
err:
thd
->
pop_internal_handler
();
if
(
result
)
if
(
result
&&
!
thd
->
killed
)
sql_print_error
(
"Failed to write to mysql.slow_log: %s"
,
error_handler
.
message
());
...
...
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