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
d86be342
Commit
d86be342
authored
May 28, 2002
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge hundin:/my/mysql-4.0 into narttu.mysql.fi:/my/mysql-4.0
Docs/manual.texi: Auto merged
parents
10be37fa
c579f810
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
Docs/manual.texi
Docs/manual.texi
+5
-4
sql/mysqld.cc
sql/mysqld.cc
+2
-1
No files found.
Docs/manual.texi
View file @
d86be342
...
...
@@ -14340,7 +14340,8 @@ privilege.
@item --skip-stack-trace
Don't write stack traces. This option is useful when you are running
@code{mysqld} under a debugger. @xref{Debugging server}.
@code{mysqld} under a debugger. On some system you also have to use
this option to get a core file. @xref{Debugging server}.
@item --skip-thread-priority
Disable using thread priorities for faster response time.
...
...
@@ -19981,7 +19982,7 @@ is automatically enlarged, up to @code{max_allowed_packet} bytes.)
@item @code{net_read_timeout}
Number of seconds to wait for more data from a connection before aborting
the read. Note that when we don't expect data from a connection, the timeout
is defined by @code{write_timeout}. See also @code{slave_
read
_timeout}.
is defined by @code{write_timeout}. See also @code{slave_
net
_timeout}.
@item @code{net_retry_count}
If a read on a communication port is interrupted, retry this many times
...
...
@@ -20060,7 +20061,7 @@ the @strong{process} privilege. This can improve security if you're
concerned about people being able to see what databases other users
have. See also @code{safe_show_database}.
@item @code{slave_
read
_timeout}
@item @code{slave_
net
_timeout}
Number of seconds to wait for more data from a master/slave connection
before aborting the read.
...
...
@@ -24057,7 +24058,7 @@ Example:
Tells the slave server not to start the slave on the startup. The user
can start it later with @code{SLAVE START}.
@item @code{slave_
read
_timeout=#} @tab
@item @code{slave_
net
_timeout=#} @tab
Number of seconds to wait for more data from the master before aborting
the read.
@end multitable
sql/mysqld.cc
View file @
d86be342
...
...
@@ -3501,7 +3501,8 @@ static struct my_option my_long_options[] =
(
gptr
*
)
&
relay_log_space_limit
,
0
,
GET_ULONG
,
REQUIRED_ARG
,
0L
,
0L
,
ULONG_MAX
,
0
,
1
,
0
},
{
"slave_net_timeout"
,
OPT_SLAVE_NET_TIMEOUT
,
"Undocumented"
,
(
gptr
*
)
&
slave_net_timeout
,
(
gptr
*
)
&
slave_net_timeout
,
0
,
"Number of seconds to wait for more data from a master/slave connection before aborting the read."
,
(
gptr
*
)
&
slave_net_timeout
,
(
gptr
*
)
&
slave_net_timeout
,
0
,
GET_ULONG
,
REQUIRED_ARG
,
SLAVE_NET_TIMEOUT
,
1
,
LONG_TIMEOUT
,
0
,
1
,
0
},
{
"slow_launch_time"
,
OPT_SLOW_LAUNCH_TIME
,
"If creating the thread takes longer than this value (in seconds), the Slow_launch_threads counter will be incremented."
,
...
...
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