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
23141838
Commit
23141838
authored
Jan 09, 2009
by
Mattias Jonsson
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
b43b8c24
a24862ed
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
172 additions
and
36 deletions
+172
-36
sql/log_event.h
sql/log_event.h
+10
-12
sql/repl_failsafe.cc
sql/repl_failsafe.cc
+10
-0
sql/slave.cc
sql/slave.cc
+36
-3
sql/sql_binlog.cc
sql/sql_binlog.cc
+4
-1
sql/sql_lex.h
sql/sql_lex.h
+9
-0
sql/sql_repl.cc
sql/sql_repl.cc
+103
-20
No files found.
sql/log_event.h
View file @
23141838
...
@@ -327,18 +327,16 @@ struct sql_ex_info
...
@@ -327,18 +327,16 @@ struct sql_ex_info
#define Q_CHARSET_DATABASE_CODE 8
#define Q_CHARSET_DATABASE_CODE 8
#define Q_TABLE_MAP_FOR_UPDATE_CODE 9
#define Q_TABLE_MAP_FOR_UPDATE_CODE 9
/* Intvar event post-header */
/* Intvar event data */
#define I_TYPE_OFFSET 0
#define I_TYPE_OFFSET 0
#define I_VAL_OFFSET 1
#define I_VAL_OFFSET 1
/* Rand event post-header */
/* Rand event data */
#define RAND_SEED1_OFFSET 0
#define RAND_SEED1_OFFSET 0
#define RAND_SEED2_OFFSET 8
#define RAND_SEED2_OFFSET 8
/* User_var event post-header */
/* User_var event data */
#define UV_VAL_LEN_SIZE 4
#define UV_VAL_LEN_SIZE 4
#define UV_VAL_IS_NULL 1
#define UV_VAL_IS_NULL 1
#define UV_VAL_TYPE_SIZE 1
#define UV_VAL_TYPE_SIZE 1
...
@@ -346,7 +344,6 @@ struct sql_ex_info
...
@@ -346,7 +344,6 @@ struct sql_ex_info
#define UV_CHARSET_NUMBER_SIZE 4
#define UV_CHARSET_NUMBER_SIZE 4
/* Load event post-header */
/* Load event post-header */
#define L_THREAD_ID_OFFSET 0
#define L_THREAD_ID_OFFSET 0
#define L_EXEC_TIME_OFFSET 4
#define L_EXEC_TIME_OFFSET 4
#define L_SKIP_LINES_OFFSET 8
#define L_SKIP_LINES_OFFSET 8
...
@@ -357,7 +354,6 @@ struct sql_ex_info
...
@@ -357,7 +354,6 @@ struct sql_ex_info
#define L_DATA_OFFSET LOAD_HEADER_LEN
#define L_DATA_OFFSET LOAD_HEADER_LEN
/* Rotate event post-header */
/* Rotate event post-header */
#define R_POS_OFFSET 0
#define R_POS_OFFSET 0
#define R_IDENT_OFFSET 8
#define R_IDENT_OFFSET 8
...
@@ -2214,10 +2210,11 @@ protected:
...
@@ -2214,10 +2210,11 @@ protected:
@section Intvar_log_event_binary_format Binary Format
@section Intvar_log_event_binary_format Binary Format
The Post-Header has two components:
The Post-Header for this event type is empty. The Body has two
components:
<table>
<table>
<caption>
Post-Header
for Intvar_log_event</caption>
<caption>
Body
for Intvar_log_event</caption>
<tr>
<tr>
<th>Name</th>
<th>Name</th>
...
@@ -2291,11 +2288,12 @@ private:
...
@@ -2291,11 +2288,12 @@ private:
which are stored internally as two 64-bit numbers.
which are stored internally as two 64-bit numbers.
@section Rand_log_event_binary_format Binary Format
@section Rand_log_event_binary_format Binary Format
This event type has no Post-Header. The Body of this event type has
two components:
The Post-Header for this event type is empty. The Body has two
components:
<table>
<table>
<caption>
Post-Header for Intvar
_log_event</caption>
<caption>
Body for Rand
_log_event</caption>
<tr>
<tr>
<th>Name</th>
<th>Name</th>
...
...
sql/repl_failsafe.cc
View file @
23141838
...
@@ -644,6 +644,16 @@ err:
...
@@ -644,6 +644,16 @@ err:
}
}
#endif
#endif
/**
Execute a SHOW SLAVE HOSTS statement.
@param thd Pointer to THD object for the client thread executing the
statement.
@retval FALSE success
@retval TRUE failure
*/
bool
show_slave_hosts
(
THD
*
thd
)
bool
show_slave_hosts
(
THD
*
thd
)
{
{
List
<
Item
>
field_list
;
List
<
Item
>
field_list
;
...
...
sql/slave.cc
View file @
23141838
...
@@ -1357,6 +1357,17 @@ int register_slave_on_master(MYSQL* mysql, Master_info *mi,
...
@@ -1357,6 +1357,17 @@ int register_slave_on_master(MYSQL* mysql, Master_info *mi,
}
}
/**
Execute a SHOW SLAVE STATUS statement.
@param thd Pointer to THD object for the client thread executing the
statement.
@param mi Pointer to Master_info object for the IO thread.
@retval FALSE success
@retval TRUE failure
*/
bool
show_master_info
(
THD
*
thd
,
Master_info
*
mi
)
bool
show_master_info
(
THD
*
thd
,
Master_info
*
mi
)
{
{
// TODO: fix this for multi-master
// TODO: fix this for multi-master
...
@@ -2062,7 +2073,7 @@ int apply_event_and_update_pos(Log_event* ev, THD* thd, Relay_log_info* rli,
...
@@ -2062,7 +2073,7 @@ int apply_event_and_update_pos(Log_event* ev, THD* thd, Relay_log_info* rli,
fewer times, 0 is returned.
fewer times, 0 is returned.
- init_master_info or init_relay_log_pos failed. (These are called
- init_master_info or init_relay_log_pos failed. (These are called
if a failure occurs when applying the event.)
</li>
if a failure occurs when applying the event.)
- An error occurred when updating the binlog position.
- An error occurred when updating the binlog position.
...
@@ -2307,8 +2318,14 @@ static int try_to_reconnect(THD *thd, MYSQL *mysql, Master_info *mi,
...
@@ -2307,8 +2318,14 @@ static int try_to_reconnect(THD *thd, MYSQL *mysql, Master_info *mi,
}
}
/* Slave I/O Thread entry point */
/**
Slave IO thread entry point.
@param arg Pointer to Master_info struct that holds information for
the IO thread.
@return Always 0.
*/
pthread_handler_t
handle_slave_io
(
void
*
arg
)
pthread_handler_t
handle_slave_io
(
void
*
arg
)
{
{
THD
*
thd
;
// needs to be first for thread_stack
THD
*
thd
;
// needs to be first for thread_stack
...
@@ -2616,8 +2633,14 @@ err:
...
@@ -2616,8 +2633,14 @@ err:
}
}
/* Slave SQL Thread entry point */
/**
Slave SQL thread entry point.
@param arg Pointer to Relay_log_info object that holds information
for the SQL thread.
@return Always 0.
*/
pthread_handler_t
handle_slave_sql
(
void
*
arg
)
pthread_handler_t
handle_slave_sql
(
void
*
arg
)
{
{
THD
*
thd
;
/* needs to be first for thread_stack */
THD
*
thd
;
/* needs to be first for thread_stack */
...
@@ -3710,6 +3733,16 @@ static IO_CACHE *reopen_relay_log(Relay_log_info *rli, const char **errmsg)
...
@@ -3710,6 +3733,16 @@ static IO_CACHE *reopen_relay_log(Relay_log_info *rli, const char **errmsg)
}
}
/**
Reads next event from the relay log. Should be called from the
slave IO thread.
@param rli Relay_log_info structure for the slave IO thread.
@return The event read, or NULL on error. If an error occurs, the
error is reported through the sql_print_information() or
sql_print_error() functions.
*/
static
Log_event
*
next_event
(
Relay_log_info
*
rli
)
static
Log_event
*
next_event
(
Relay_log_info
*
rli
)
{
{
Log_event
*
ev
;
Log_event
*
ev
;
...
...
sql/sql_binlog.cc
View file @
23141838
...
@@ -18,7 +18,7 @@
...
@@ -18,7 +18,7 @@
#include "base64.h"
#include "base64.h"
/**
/**
Execute a BINLOG statement
Execute a BINLOG statement
.
To execute the BINLOG command properly the server needs to know
To execute the BINLOG command properly the server needs to know
which format the BINLOG command's event is in. Therefore, the first
which format the BINLOG command's event is in. Therefore, the first
...
@@ -26,6 +26,9 @@
...
@@ -26,6 +26,9 @@
Format_description_log_event, as outputted by mysqlbinlog. This
Format_description_log_event, as outputted by mysqlbinlog. This
Format_description_log_event is cached in
Format_description_log_event is cached in
rli->description_event_for_exec.
rli->description_event_for_exec.
@param thd Pointer to THD object for the client thread executing the
statement.
*/
*/
void
mysql_client_binlog_statement
(
THD
*
thd
)
void
mysql_client_binlog_statement
(
THD
*
thd
)
...
...
sql/sql_lex.h
View file @
23141838
...
@@ -190,6 +190,15 @@ typedef struct st_lex_server_options
...
@@ -190,6 +190,15 @@ typedef struct st_lex_server_options
char
*
server_name
,
*
host
,
*
db
,
*
username
,
*
password
,
*
scheme
,
*
socket
,
*
owner
;
char
*
server_name
,
*
host
,
*
db
,
*
username
,
*
password
,
*
scheme
,
*
socket
,
*
owner
;
}
LEX_SERVER_OPTIONS
;
}
LEX_SERVER_OPTIONS
;
/**
Structure to hold parameters for CHANGE MASTER or START/STOP SLAVE
or SHOW NEW MASTER.
Remark: this should not be confused with Master_info (and perhaps
would better be renamed to st_lex_replication_info). Some fields,
e.g., delay, are saved in Relay_log_info, not in Master_info.
*/
typedef
struct
st_lex_master_info
typedef
struct
st_lex_master_info
{
{
char
*
host
,
*
user
,
*
password
,
*
log_file_name
;
char
*
host
,
*
user
,
*
password
,
*
log_file_name
;
...
...
sql/sql_repl.cc
View file @
23141838
...
@@ -257,6 +257,17 @@ bool purge_error_message(THD* thd, int res)
...
@@ -257,6 +257,17 @@ bool purge_error_message(THD* thd, int res)
}
}
/**
Execute a PURGE BINARY LOGS TO <log> command.
@param thd Pointer to THD object for the client thread executing the
statement.
@param to_log Name of the last log to purge.
@retval FALSE success
@retval TRUE failure
*/
bool
purge_master_logs
(
THD
*
thd
,
const
char
*
to_log
)
bool
purge_master_logs
(
THD
*
thd
,
const
char
*
to_log
)
{
{
char
search_file_name
[
FN_REFLEN
];
char
search_file_name
[
FN_REFLEN
];
...
@@ -273,6 +284,17 @@ bool purge_master_logs(THD* thd, const char* to_log)
...
@@ -273,6 +284,17 @@ bool purge_master_logs(THD* thd, const char* to_log)
}
}
/**
Execute a PURGE BINARY LOGS BEFORE <date> command.
@param thd Pointer to THD object for the client thread executing the
statement.
@param purge_time Date before which logs should be purged.
@retval FALSE success
@retval TRUE failure
*/
bool
purge_master_logs_before_date
(
THD
*
thd
,
time_t
purge_time
)
bool
purge_master_logs_before_date
(
THD
*
thd
,
time_t
purge_time
)
{
{
if
(
!
mysql_bin_log
.
is_open
())
if
(
!
mysql_bin_log
.
is_open
())
...
@@ -765,6 +787,20 @@ err:
...
@@ -765,6 +787,20 @@ err:
DBUG_VOID_RETURN
;
DBUG_VOID_RETURN
;
}
}
/**
Execute a START SLAVE statement.
@param thd Pointer to THD object for the client thread executing the
statement.
@param mi Pointer to Master_info object for the slave's IO thread.
@param net_report If true, saves the exit status into thd->main_da.
@retval 0 success
@retval 1 error
*/
int
start_slave
(
THD
*
thd
,
Master_info
*
mi
,
bool
net_report
)
int
start_slave
(
THD
*
thd
,
Master_info
*
mi
,
bool
net_report
)
{
{
int
slave_errno
=
0
;
int
slave_errno
=
0
;
...
@@ -890,6 +926,19 @@ int start_slave(THD* thd , Master_info* mi, bool net_report)
...
@@ -890,6 +926,19 @@ int start_slave(THD* thd , Master_info* mi, bool net_report)
}
}
/**
Execute a STOP SLAVE statement.
@param thd Pointer to THD object for the client thread executing the
statement.
@param mi Pointer to Master_info object for the slave's IO thread.
@param net_report If true, saves the exit status into thd->main_da.
@retval 0 success
@retval 1 error
*/
int
stop_slave
(
THD
*
thd
,
Master_info
*
mi
,
bool
net_report
)
int
stop_slave
(
THD
*
thd
,
Master_info
*
mi
,
bool
net_report
)
{
{
DBUG_ENTER
(
"stop_slave"
);
DBUG_ENTER
(
"stop_slave"
);
...
@@ -942,20 +991,17 @@ int stop_slave(THD* thd, Master_info* mi, bool net_report )
...
@@ -942,20 +991,17 @@ int stop_slave(THD* thd, Master_info* mi, bool net_report )
}
}
/*
/**
Remove all relay logs and start replication from the start
Execute a RESET SLAVE statement.
SYNOPSIS
reset_slave()
thd Thread handler
mi Master info for the slave
RETURN
@param thd Pointer to THD object of the client thread executing the
0 ok
statement.
1 error
*/
@param mi Pointer to Master_info object for the slave.
@retval 0 success
@retval 1 error
*/
int
reset_slave
(
THD
*
thd
,
Master_info
*
mi
)
int
reset_slave
(
THD
*
thd
,
Master_info
*
mi
)
{
{
MY_STAT
stat_area
;
MY_STAT
stat_area
;
...
@@ -1070,6 +1116,18 @@ void kill_zombie_dump_threads(uint32 slave_server_id)
...
@@ -1070,6 +1116,18 @@ void kill_zombie_dump_threads(uint32 slave_server_id)
}
}
/**
Execute a CHANGE MASTER statement.
@param thd Pointer to THD object for the client thread executing the
statement.
@param mi Pointer to Master_info object belonging to the slave's IO
thread.
@retval FALSE success
@retval TRUE error
*/
bool
change_master
(
THD
*
thd
,
Master_info
*
mi
)
bool
change_master
(
THD
*
thd
,
Master_info
*
mi
)
{
{
int
thread_mask
;
int
thread_mask
;
...
@@ -1283,6 +1341,16 @@ bool change_master(THD* thd, Master_info* mi)
...
@@ -1283,6 +1341,16 @@ bool change_master(THD* thd, Master_info* mi)
DBUG_RETURN
(
FALSE
);
DBUG_RETURN
(
FALSE
);
}
}
/**
Execute a RESET MASTER statement.
@param thd Pointer to THD object of the client thread executing the
statement.
@retval 0 success
@retval 1 error
*/
int
reset_master
(
THD
*
thd
)
int
reset_master
(
THD
*
thd
)
{
{
if
(
!
mysql_bin_log
.
is_open
())
if
(
!
mysql_bin_log
.
is_open
())
...
@@ -1312,6 +1380,15 @@ int cmp_master_pos(const char* log_file_name1, ulonglong log_pos1,
...
@@ -1312,6 +1380,15 @@ int cmp_master_pos(const char* log_file_name1, ulonglong log_pos1,
}
}
/**
Execute a SHOW BINLOG EVENTS statement.
@param thd Pointer to THD object for the client thread executing the
statement.
@retval FALSE success
@retval TRUE failure
*/
bool
mysql_show_binlog_events
(
THD
*
thd
)
bool
mysql_show_binlog_events
(
THD
*
thd
)
{
{
Protocol
*
protocol
=
thd
->
protocol
;
Protocol
*
protocol
=
thd
->
protocol
;
...
@@ -1462,6 +1539,15 @@ err:
...
@@ -1462,6 +1539,15 @@ err:
}
}
/**
Execute a SHOW MASTER STATUS statement.
@param thd Pointer to THD object for the client thread executing the
statement.
@retval FALSE success
@retval TRUE failure
*/
bool
show_binlog_info
(
THD
*
thd
)
bool
show_binlog_info
(
THD
*
thd
)
{
{
Protocol
*
protocol
=
thd
->
protocol
;
Protocol
*
protocol
=
thd
->
protocol
;
...
@@ -1495,18 +1581,15 @@ bool show_binlog_info(THD* thd)
...
@@ -1495,18 +1581,15 @@ bool show_binlog_info(THD* thd)
}
}
/*
/*
*
Send a list of all binary logs to client
Execute a SHOW BINARY LOGS statement.
SYNOPSIS
@param thd Pointer to THD object for the client thread executing the
show_binlogs()
statement.
thd Thread specific variable
RETURN VALUES
@retval FALSE success
FALSE OK
@retval TRUE failure
TRUE error
*/
*/
bool
show_binlogs
(
THD
*
thd
)
bool
show_binlogs
(
THD
*
thd
)
{
{
IO_CACHE
*
index_file
;
IO_CACHE
*
index_file
;
...
...
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