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
51177573
Commit
51177573
authored
Sep 08, 2004
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
few s/sql_print_error/sql_print_information/
parent
5567d3fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
9 deletions
+7
-9
sql/slave.cc
sql/slave.cc
+7
-9
No files found.
sql/slave.cc
View file @
51177573
...
@@ -3016,7 +3016,7 @@ extern "C" pthread_handler_decl(handle_slave_io,arg)
...
@@ -3016,7 +3016,7 @@ extern "C" pthread_handler_decl(handle_slave_io,arg)
thd
->
proc_info
=
"Connecting to master"
;
thd
->
proc_info
=
"Connecting to master"
;
// we can get killed during safe_connect
// we can get killed during safe_connect
if
(
!
safe_connect
(
thd
,
mysql
,
mi
))
if
(
!
safe_connect
(
thd
,
mysql
,
mi
))
sql_print_
error
(
"Slave I/O thread: connected to master '%s@%s:%d',\
sql_print_
information
(
"Slave I/O thread: connected to master '%s@%s:%d',\
replication started in log '%s' at position %s"
,
mi
->
user
,
replication started in log '%s' at position %s"
,
mi
->
user
,
mi
->
host
,
mi
->
port
,
mi
->
host
,
mi
->
port
,
IO_RPL_LOG_NAME
,
IO_RPL_LOG_NAME
,
...
@@ -3351,7 +3351,7 @@ extern "C" pthread_handler_decl(handle_slave_sql,arg)
...
@@ -3351,7 +3351,7 @@ extern "C" pthread_handler_decl(handle_slave_sql,arg)
rli
->
group_master_log_name
,
rli
->
group_master_log_name
,
llstr
(
rli
->
group_master_log_pos
,
llbuff
)));
llstr
(
rli
->
group_master_log_pos
,
llbuff
)));
if
(
global_system_variables
.
log_warnings
)
if
(
global_system_variables
.
log_warnings
)
sql_print_
error
(
"Slave SQL thread initialized, starting replication in \
sql_print_
information
(
"Slave SQL thread initialized, starting replication in \
log '%s' at position %s, relay log '%s' position: %s"
,
RPL_LOG_NAME
,
log '%s' at position %s, relay log '%s' position: %s"
,
RPL_LOG_NAME
,
llstr
(
rli
->
group_master_log_pos
,
llbuff
),
rli
->
group_relay_log_name
,
llstr
(
rli
->
group_master_log_pos
,
llbuff
),
rli
->
group_relay_log_name
,
llstr
(
rli
->
group_relay_log_pos
,
llbuff1
));
llstr
(
rli
->
group_relay_log_pos
,
llbuff1
));
...
@@ -3372,7 +3372,7 @@ Slave SQL thread aborted. Can't execute init_slave query");
...
@@ -3372,7 +3372,7 @@ Slave SQL thread aborted. Can't execute init_slave query");
while
(
!
sql_slave_killed
(
thd
,
rli
))
while
(
!
sql_slave_killed
(
thd
,
rli
))
{
{
thd
->
proc_info
=
"Reading event from the relay log"
;
thd
->
proc_info
=
"Reading event from the relay log"
;
DBUG_ASSERT
(
rli
->
sql_thd
==
thd
);
DBUG_ASSERT
(
rli
->
sql_thd
==
thd
);
THD_CHECK_SENTRY
(
thd
);
THD_CHECK_SENTRY
(
thd
);
if
(
exec_relay_log_event
(
thd
,
rli
))
if
(
exec_relay_log_event
(
thd
,
rli
))
...
@@ -3382,16 +3382,14 @@ Slave SQL thread aborted. Can't execute init_slave query");
...
@@ -3382,16 +3382,14 @@ Slave SQL thread aborted. Can't execute init_slave query");
sql_print_error
(
"\
sql_print_error
(
"\
Error running query, slave SQL thread aborted. Fix the problem, and restart \
Error running query, slave SQL thread aborted. Fix the problem, and restart \
the slave SQL thread with
\"
SLAVE START
\"
. We stopped at log \
the slave SQL thread with
\"
SLAVE START
\"
. We stopped at log \
'%s' position %s"
,
'%s' position %s"
,
RPL_LOG_NAME
,
llstr
(
rli
->
group_master_log_pos
,
llbuff
));
RPL_LOG_NAME
,
llstr
(
rli
->
group_master_log_pos
,
llbuff
));
goto
err
;
goto
err
;
}
}
}
}
/* Thread stopped. Print the current replication position to the log */
/* Thread stopped. Print the current replication position to the log */
sql_print_error
(
"Slave SQL thread exiting, replication stopped in log \
sql_print_information
(
"Slave SQL thread exiting, replication stopped in log \
'%s' at position %s"
,
'%s' at position %s"
,
RPL_LOG_NAME
,
llstr
(
rli
->
group_master_log_pos
,
llbuff
));
RPL_LOG_NAME
,
llstr
(
rli
->
group_master_log_pos
,
llbuff
));
err:
err:
VOID
(
pthread_mutex_lock
(
&
LOCK_thread_count
));
VOID
(
pthread_mutex_lock
(
&
LOCK_thread_count
));
...
@@ -3947,7 +3945,7 @@ Error: '%s' errno: %d retry-time: %d retries: %d",
...
@@ -3947,7 +3945,7 @@ Error: '%s' errno: %d retry-time: %d retries: %d",
if
(
reconnect
)
if
(
reconnect
)
{
{
if
(
!
suppress_warnings
&&
global_system_variables
.
log_warnings
)
if
(
!
suppress_warnings
&&
global_system_variables
.
log_warnings
)
sql_print_
error
(
"Slave: connected to master '%s@%s:%d',\
sql_print_
information
(
"Slave: connected to master '%s@%s:%d',\
replication resumed in log '%s' at position %s"
,
mi
->
user
,
replication resumed in log '%s' at position %s"
,
mi
->
user
,
mi
->
host
,
mi
->
port
,
mi
->
host
,
mi
->
port
,
IO_RPL_LOG_NAME
,
IO_RPL_LOG_NAME
,
...
...
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