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
cec2793e
Commit
cec2793e
authored
Oct 16, 2001
by
monty@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better error message in mysqlmanager
parent
da96aaed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
Docs/manual.texi
Docs/manual.texi
+1
-0
tools/mysqlmanager.c
tools/mysqlmanager.c
+2
-2
No files found.
Docs/manual.texi
View file @
cec2793e
...
...
@@ -5286,6 +5286,7 @@ Replication should work with @code{RAND()} and user variables @code{@@var}.
Online backup with very low performance penalty. The online backup will
make it easy to add a new replication slave without taking down the
master.
@item
Allow @code{DELETE} on @code{MyISAM} tables to use the record cache.
To do this, we need to update the threads record cache when we update
the @code{.MYD} file.
tools/mysqlmanager.c
View file @
cec2793e
...
...
@@ -1170,8 +1170,8 @@ static char* read_line(struct manager_thd* thd)
{
if
(
vio_should_retry
(
thd
->
vio
)
&&
retry_count
++
<
MAX_RETRY_COUNT
)
continue
;
log_err
(
"Error reading command from client (Error: %d)"
,
vio_errno
(
thd
->
vio
));
log_err
(
"Error reading command from client (
len: %d
Error: %d)"
,
len
,
vio_errno
(
thd
->
vio
));
thd
->
fatal
=
1
;
return
0
;
}
...
...
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