summaryrefslogtreecommitdiff
path: root/Docs
diff options
context:
space:
mode:
authorpaul@teton.kitebird.com <>2002-10-07 09:53:17 -0500
committerpaul@teton.kitebird.com <>2002-10-07 09:53:17 -0500
commit33c27caeb5f5625c4e4799f710f53ad2236119a3 (patch)
tree961401d6e5200e6efd14e7a5ed953e527ed62a44 /Docs
parentff48c85c8f5f232b071fb1fd167cb23cebdfaedc (diff)
downloadmariadb-git-33c27caeb5f5625c4e4799f710f53ad2236119a3.tar.gz
manual.texi Document IO_THREAD and SQL_THREAD for SLAVE START/STOP.
Diffstat (limited to 'Docs')
-rw-r--r--Docs/manual.texi10
1 files changed, 8 insertions, 2 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi
index ba3e3c3a61b..87f6768fa77 100644
--- a/Docs/manual.texi
+++ b/Docs/manual.texi
@@ -24321,10 +24321,16 @@ summary of commands:
@item @strong{Command} @tab @strong{Description}
@item @code{SLAVE START}
- @tab Starts the slave thread. (Slave)
+ @tab Starts the slave thread.
+As of MySQL 4.0.2, you can add @code{IO_THREAD} or @code{SQL_THREAD}
+options to the statement to start the I/O thread or the SQL thread.
+The I/O thread reads queries from the master server and stores them in the
+relay log. The SQL thread reads the relay log and executes the queries.
+(Slave)
@item @code{SLAVE STOP}
- @tab Stops the slave thread. (Slave)
+ @tab Stops the slave thread. Like @code{SLAVE START}, this statement
+may be used with @code{IO_THREAD} and @code{SQL_THREAD} options. (Slave)
@item @code{SET SQL_LOG_BIN=0}
@tab Disables update logging if the user has the @code{SUPER} privilege.