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
7a1bb450
Commit
7a1bb450
authored
Nov 21, 2003
by
paul@teton.kitebird.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change word order of a few PROCESSLIST messages to correspond
to order used in START SLAVE syntax.
parent
4883d21b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
sql/log.cc
sql/log.cc
+1
-1
sql/slave.cc
sql/slave.cc
+2
-2
No files found.
sql/log.cc
View file @
7a1bb450
...
...
@@ -1692,7 +1692,7 @@ void MYSQL_LOG:: wait_for_update(THD* thd, bool master_or_slave)
const
char
*
old_msg
=
thd
->
enter_cond
(
&
update_cond
,
&
LOCK_log
,
master_or_slave
?
"Has read all relay log; waiting for \
the
I/O slave
thread to update it"
:
the
slave I/O
thread to update it"
:
"Has sent all binlog to slave; \
waiting for binlog to be updated"
);
pthread_cond_wait
(
&
update_cond
,
&
LOCK_log
);
...
...
sql/slave.cc
View file @
7a1bb450
...
...
@@ -1579,7 +1579,7 @@ static bool wait_for_relay_log_space(RELAY_LOG_INFO* rli)
save_proc_info
=
thd
->
enter_cond
(
&
rli
->
log_space_cond
,
&
rli
->
log_space_lock
,
"\
Waiting for the
SQL slave
thread to free enough relay log space"
);
Waiting for the
slave SQL
thread to free enough relay log space"
);
while
(
rli
->
log_space_limit
<
rli
->
log_space_total
&&
!
(
slave_killed
=
io_slave_killed
(
thd
,
mi
))
&&
!
rli
->
ignore_log_space_limit
)
...
...
@@ -2291,7 +2291,7 @@ int st_relay_log_info::wait_for_pos(THD* thd, String* log_name,
DBUG_PRINT
(
"info"
,(
"Waiting for master update"
));
const
char
*
msg
=
thd
->
enter_cond
(
&
data_cond
,
&
data_lock
,
"Waiting for the
SQL slave
thread to \
"Waiting for the
slave SQL
thread to \
advance position"
);
/*
We are going to pthread_cond_(timed)wait(); if the SQL thread stops it
...
...
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