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
93860556
Commit
93860556
authored
Apr 12, 2007
by
mats@romeo.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge romeo.(none):/home/bkroot/mysql-5.1-new-rpl
into romeo.(none):/home/bk/b25688-mysql-5.1-rpl
parents
2f2191fa
11fc24ef
Changes
19
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
399 additions
and
109 deletions
+399
-109
mysql-test/r/rpl_ndb_circular_simplex.result
mysql-test/r/rpl_ndb_circular_simplex.result
+61
-0
mysql-test/t/rpl_ndb_circular_simplex.test
mysql-test/t/rpl_ndb_circular_simplex.test
+77
-0
sql/item_func.cc
sql/item_func.cc
+1
-0
sql/log.cc
sql/log.cc
+1
-0
sql/log_event.cc
sql/log_event.cc
+96
-86
sql/log_event.h
sql/log_event.h
+2
-0
sql/mysqld.cc
sql/mysqld.cc
+1
-0
sql/repl_failsafe.cc
sql/repl_failsafe.cc
+1
-0
sql/rpl_mi.h
sql/rpl_mi.h
+3
-0
sql/rpl_rli.cc
sql/rpl_rli.cc
+49
-1
sql/rpl_rli.h
sql/rpl_rli.h
+71
-0
sql/set_var.cc
sql/set_var.cc
+1
-0
sql/slave.cc
sql/slave.cc
+21
-19
sql/slave.h
sql/slave.h
+7
-2
sql/sql_binlog.cc
sql/sql_binlog.cc
+1
-0
sql/sql_class.cc
sql/sql_class.cc
+1
-0
sql/sql_class.h
sql/sql_class.h
+3
-1
sql/sql_insert.cc
sql/sql_insert.cc
+1
-0
sql/sql_repl.cc
sql/sql_repl.cc
+1
-0
No files found.
mysql-test/r/rpl_ndb_circular_simplex.result
0 → 100644
View file @
93860556
stop slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
CREATE TABLE t1 (a int key, b int) ENGINE=NDB;
SHOW TABLES;
Tables_in_test
t1
RESET MASTER;
INSERT INTO t1 VALUES (1,2);
INSERT INTO t1 VALUES (2,3);
STOP SLAVE;
CHANGE MASTER TO MASTER_HOST="127.0.0.1",MASTER_PORT=SLAVE_PORT,MASTER_USER="root";
RESET MASTER;
START SLAVE;
SHOW SLAVE STATUS;
Slave_IO_State #
Master_Host 127.0.0.1
Master_User root
Master_Port 9308
Connect_Retry 60
Master_Log_File slave-bin.000001
Read_Master_Log_Pos 468
Relay_Log_File #
Relay_Log_Pos #
Relay_Master_Log_File slave-bin.000001
Slave_IO_Running Yes
Slave_SQL_Running Yes
Replicate_Do_DB
Replicate_Ignore_DB
Replicate_Do_Table
Replicate_Ignore_Table
Replicate_Wild_Do_Table
Replicate_Wild_Ignore_Table
Last_Errno 0
Last_Error
Skip_Counter 0
Exec_Master_Log_Pos 468
Relay_Log_Space #
Until_Condition None
Until_Log_File
Until_Log_Pos 0
Master_SSL_Allowed No
Master_SSL_CA_File
Master_SSL_CA_Path
Master_SSL_Cert
Master_SSL_Cipher
Master_SSL_Key
Seconds_Behind_Master #
SELECT * FROM t1 ORDER BY a;
a b
1 2
2 3
STOP SLAVE;
START SLAVE;
SELECT * FROM t1 ORDER BY a;
a b
1 2
2 3
mysql-test/t/rpl_ndb_circular_simplex.test
0 → 100644
View file @
93860556
--
source
include
/
have_ndb
.
inc
--
source
include
/
have_binlog_format_row
.
inc
--
source
include
/
master
-
slave
.
inc
connection
master
;
CREATE
TABLE
t1
(
a
int
key
,
b
int
)
ENGINE
=
NDB
;
sync_slave_with_master
;
SHOW
TABLES
;
# Lose the events from the slave binary log: there is no
# need to re-create the table on the master.
connection
slave
;
RESET
MASTER
;
# Insert some values on the slave and master
connection
master
;
INSERT
INTO
t1
VALUES
(
1
,
2
);
# Switch to slave once event is applied and insert a row
sync_slave_with_master
;
connection
slave
;
INSERT
INTO
t1
VALUES
(
2
,
3
);
# ... it is now very probable that we have a mixed event in the binary
# log. If we don't, the test should still pass, but will not test the
# mixed event situation.
# The statement is disabled since it cannot reliably show the same
# info all the time. Use it for debug purposes.
#SHOW BINLOG EVENTS;
# Replicate back to the master to test this mixed event on the master
STOP
SLAVE
;
connection
master
;
--
replace_result
$SLAVE_MYPORT
SLAVE_PORT
eval
CHANGE
MASTER
TO
MASTER_HOST
=
"127.0.0.1"
,
MASTER_PORT
=
$SLAVE_MYPORT
,
MASTER_USER
=
"root"
;
RESET
MASTER
;
START
SLAVE
;
connection
slave
;
save_master_pos
;
connection
master
;
sync_with_master
;
# The statement is disabled since it cannot reliably show the same
# info all the time. Use it for debug purposes.
#SHOW BINLOG EVENTS;
# Check that there is no error in replication
--
replace_result
$MASTER_MYPORT
MASTER_PORT
--
replace_column
1
# 8 # 9 # 23 # 33 #
query_vertical
SHOW
SLAVE
STATUS
;
# Check that we have the data on the master
SELECT
*
FROM
t1
ORDER
BY
a
;
# We should now have another mixed event, likely with "slave" server
# id last, and with the STMT_END_F flag set.
# The statement is disabled since it cannot reliably show the same
# info all the time. Use it for debug purposes.
#SHOW BINLOG EVENTS;
# now lets see that this data is applied correctly on the slave
STOP
SLAVE
;
save_master_pos
;
connection
slave
;
START
SLAVE
;
# check that we have the data on the slave
sync_with_master
;
SELECT
*
FROM
t1
ORDER
BY
a
;
sql/item_func.cc
View file @
93860556
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
#include "mysql_priv.h"
#include "mysql_priv.h"
#include "slave.h" // for wait_for_master_pos
#include "slave.h" // for wait_for_master_pos
#include "rpl_mi.h"
#include <m_ctype.h>
#include <m_ctype.h>
#include <hash.h>
#include <hash.h>
#include <time.h>
#include <time.h>
...
...
sql/log.cc
View file @
93860556
...
@@ -20,6 +20,7 @@
...
@@ -20,6 +20,7 @@
#include "mysql_priv.h"
#include "mysql_priv.h"
#include "sql_repl.h"
#include "sql_repl.h"
#include "rpl_filter.h"
#include "rpl_filter.h"
#include "rpl_rli.h"
#include <my_dir.h>
#include <my_dir.h>
#include <stdarg.h>
#include <stdarg.h>
...
...
sql/log_event.cc
View file @
93860556
This diff is collapsed.
Click to expand it.
sql/log_event.h
View file @
93860556
...
@@ -841,6 +841,7 @@ public:
...
@@ -841,6 +841,7 @@ public:
}
}
protected:
protected:
/**
/**
Primitive to apply an event to the database.
Primitive to apply an event to the database.
...
@@ -2242,6 +2243,7 @@ private:
...
@@ -2242,6 +2243,7 @@ private:
#if !defined(MYSQL_CLIENT) && defined(HAVE_REPLICATION)
#if !defined(MYSQL_CLIENT) && defined(HAVE_REPLICATION)
virtual
int
do_apply_event
(
RELAY_LOG_INFO
const
*
rli
);
virtual
int
do_apply_event
(
RELAY_LOG_INFO
const
*
rli
);
virtual
int
do_update_pos
(
RELAY_LOG_INFO
*
rli
);
/*
/*
Primitive to prepare for a sequence of row executions.
Primitive to prepare for a sequence of row executions.
...
...
sql/mysqld.cc
View file @
93860556
...
@@ -17,6 +17,7 @@
...
@@ -17,6 +17,7 @@
#include <m_ctype.h>
#include <m_ctype.h>
#include <my_dir.h>
#include <my_dir.h>
#include "slave.h"
#include "slave.h"
#include "rpl_mi.h"
#include "sql_repl.h"
#include "sql_repl.h"
#include "rpl_filter.h"
#include "rpl_filter.h"
#include "repl_failsafe.h"
#include "repl_failsafe.h"
...
...
sql/repl_failsafe.cc
View file @
93860556
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
#include "repl_failsafe.h"
#include "repl_failsafe.h"
#include "sql_repl.h"
#include "sql_repl.h"
#include "slave.h"
#include "slave.h"
#include "rpl_mi.h"
#include "rpl_filter.h"
#include "rpl_filter.h"
#include "log_event.h"
#include "log_event.h"
#include <mysql.h>
#include <mysql.h>
...
...
sql/rpl_mi.h
View file @
93860556
...
@@ -18,6 +18,9 @@
...
@@ -18,6 +18,9 @@
#ifdef HAVE_REPLICATION
#ifdef HAVE_REPLICATION
#include "rpl_rli.h"
/*****************************************************************************
/*****************************************************************************
Replication IO Thread
Replication IO Thread
...
...
sql/rpl_rli.cc
View file @
93860556
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
#include "mysql_priv.h"
#include "mysql_priv.h"
#include "rpl_mi.h"
#include "rpl_rli.h"
#include "rpl_rli.h"
#include <my_dir.h> // For MY_STAT
#include <my_dir.h> // For MY_STAT
#include "sql_repl.h" // For check_binlog_magic
#include "sql_repl.h" // For check_binlog_magic
...
@@ -37,7 +38,7 @@ st_relay_log_info::st_relay_log_info()
...
@@ -37,7 +38,7 @@ st_relay_log_info::st_relay_log_info()
inited
(
0
),
abort_slave
(
0
),
slave_running
(
0
),
until_condition
(
UNTIL_NONE
),
inited
(
0
),
abort_slave
(
0
),
slave_running
(
0
),
until_condition
(
UNTIL_NONE
),
until_log_pos
(
0
),
retried_trans
(
0
),
until_log_pos
(
0
),
retried_trans
(
0
),
tables_to_lock
(
0
),
tables_to_lock_count
(
0
),
tables_to_lock
(
0
),
tables_to_lock_count
(
0
),
last_event_start_time
(
0
)
last_event_start_time
(
0
)
,
m_flags
(
0
)
{
{
DBUG_ENTER
(
"st_relay_log_info::st_relay_log_info"
);
DBUG_ENTER
(
"st_relay_log_info::st_relay_log_info"
);
...
@@ -1086,6 +1087,52 @@ bool st_relay_log_info::cached_charset_compare(char *charset) const
...
@@ -1086,6 +1087,52 @@ bool st_relay_log_info::cached_charset_compare(char *charset) const
}
}
void
st_relay_log_info
::
stmt_done
(
my_off_t
const
event_master_log_pos
,
time_t
event_creation_time
)
{
clear_flag
(
IN_STMT
);
/*
If in a transaction, and if the slave supports transactions, just
inc_event_relay_log_pos(). We only have to check for OPTION_BEGIN
(not OPTION_NOT_AUTOCOMMIT) as transactions are logged with
BEGIN/COMMIT, not with SET AUTOCOMMIT= .
CAUTION: opt_using_transactions means innodb || bdb ; suppose the
master supports InnoDB and BDB, but the slave supports only BDB,
problems will arise: - suppose an InnoDB table is created on the
master, - then it will be MyISAM on the slave - but as
opt_using_transactions is true, the slave will believe he is
transactional with the MyISAM table. And problems will come when
one does START SLAVE; STOP SLAVE; START SLAVE; (the slave will
resume at BEGIN whereas there has not been any rollback). This is
the problem of using opt_using_transactions instead of a finer
"does the slave support _transactional handler used on the
master_".
More generally, we'll have problems when a query mixes a
transactional handler and MyISAM and STOP SLAVE is issued in the
middle of the "transaction". START SLAVE will resume at BEGIN
while the MyISAM table has already been updated.
*/
if
((
sql_thd
->
options
&
OPTION_BEGIN
)
&&
opt_using_transactions
)
inc_event_relay_log_pos
();
else
{
inc_group_relay_log_pos
(
event_master_log_pos
);
flush_relay_log_info
(
this
);
/*
Note that Rotate_log_event::do_apply_event() does not call this
function, so there is no chance that a fake rotate event resets
last_master_timestamp. Note that we update without mutex
(probably ok - except in some very rare cases, only consequence
is that value may take some time to display in
Seconds_Behind_Master - not critical).
*/
last_master_timestamp
=
event_creation_time
;
}
}
#if !defined(MYSQL_CLIENT) && defined(HAVE_REPLICATION)
#if !defined(MYSQL_CLIENT) && defined(HAVE_REPLICATION)
void
st_relay_log_info
::
cleanup_context
(
THD
*
thd
,
bool
error
)
void
st_relay_log_info
::
cleanup_context
(
THD
*
thd
,
bool
error
)
{
{
...
@@ -1112,6 +1159,7 @@ void st_relay_log_info::cleanup_context(THD *thd, bool error)
...
@@ -1112,6 +1159,7 @@ void st_relay_log_info::cleanup_context(THD *thd, bool error)
m_table_map
.
clear_tables
();
m_table_map
.
clear_tables
();
close_thread_tables
(
thd
);
close_thread_tables
(
thd
);
clear_tables_to_lock
();
clear_tables_to_lock
();
clear_flag
(
IN_STMT
);
last_event_start_time
=
0
;
last_event_start_time
=
0
;
DBUG_VOID_RETURN
;
DBUG_VOID_RETURN
;
}
}
...
...
sql/rpl_rli.h
View file @
93860556
...
@@ -51,6 +51,17 @@ struct RPL_TABLE_LIST;
...
@@ -51,6 +51,17 @@ struct RPL_TABLE_LIST;
typedef
struct
st_relay_log_info
typedef
struct
st_relay_log_info
{
{
/**
Flags for the state of the replication.
*/
enum
enum_state_flag
{
/** The replication thread is inside a statement */
IN_STMT
,
/** Flag counter. Should always be last */
STATE_FLAGS_COUNT
};
/*
/*
If flag set, then rli does not store its state in any info file.
If flag set, then rli does not store its state in any info file.
This is the case only when we execute BINLOG SQL commands inside
This is the case only when we execute BINLOG SQL commands inside
...
@@ -314,6 +325,66 @@ typedef struct st_relay_log_info
...
@@ -314,6 +325,66 @@ typedef struct st_relay_log_info
transaction).
transaction).
*/
*/
time_t
last_event_start_time
;
time_t
last_event_start_time
;
/**
Helper function to do after statement completion.
This function is called from an event to complete the group by
either stepping the group position, if the "statement" is not
inside a transaction; or increase the event position, if the
"statement" is inside a transaction.
@param event_log_pos
Master log position of the event. The position is recorded in the
relay log info and used to produce information for <code>SHOW
SLAVE STATUS</code>.
@param event_creation_time
Timestamp for the creation of the event on the master side. The
time stamp is recorded in the relay log info and used to compute
the <code>Seconds_behind_master</code> field.
*/
void
stmt_done
(
my_off_t
event_log_pos
,
time_t
event_creation_time
);
/**
Set the value of a replication state flag.
@param flag Flag to set
*/
void
set_flag
(
enum_state_flag
flag
)
{
m_flags
|=
(
1UL
<<
flag
);
}
/**
Clear the value of a replication state flag.
@param flag Flag to clear
*/
void
clear_flag
(
enum_state_flag
flag
)
{
m_flags
&=
~
(
1UL
<<
flag
);
}
/**
Is the replication inside a group?
Replication is inside a group if either:
- The OPTION_BEGIN flag is set, meaning we're inside a transaction
- The RLI_IN_STMT flag is set, meaning we're inside a statement
@retval true Replication thread is currently inside a group
@retval false Replication thread is currently not inside a group
*/
bool
is_in_group
()
const
{
return
(
sql_thd
->
options
&
OPTION_BEGIN
)
||
(
m_flags
&
(
1UL
<<
IN_STMT
));
}
private:
uint32
m_flags
;
}
RELAY_LOG_INFO
;
}
RELAY_LOG_INFO
;
...
...
sql/set_var.cc
View file @
93860556
...
@@ -51,6 +51,7 @@
...
@@ -51,6 +51,7 @@
#include "mysql_priv.h"
#include "mysql_priv.h"
#include <mysql.h>
#include <mysql.h>
#include "slave.h"
#include "slave.h"
#include "rpl_mi.h"
#include <my_getopt.h>
#include <my_getopt.h>
#include <thr_alarm.h>
#include <thr_alarm.h>
#include <myisam.h>
#include <myisam.h>
...
...
sql/slave.cc
View file @
93860556
...
@@ -17,8 +17,9 @@
...
@@ -17,8 +17,9 @@
#include <mysql.h>
#include <mysql.h>
#include <myisam.h>
#include <myisam.h>
#include "rpl_rli.h"
#include "slave.h"
#include "slave.h"
#include "rpl_mi.h"
#include "rpl_rli.h"
#include "sql_repl.h"
#include "sql_repl.h"
#include "rpl_filter.h"
#include "rpl_filter.h"
#include "repl_failsafe.h"
#include "repl_failsafe.h"
...
@@ -1736,11 +1737,12 @@ static int exec_relay_log_event(THD* thd, RELAY_LOG_INFO* rli)
...
@@ -1736,11 +1737,12 @@ static int exec_relay_log_event(THD* thd, RELAY_LOG_INFO* rli)
/*
/*
*/
*/
DBUG_PRINT
(
"
info"
,(
"type_code=%d (%s), server_id=%d
"
,
DBUG_PRINT
(
"
exec_event"
,(
"%s(type_code: %d; server_id: %d)
"
,
type_code
,
ev
->
get_type_str
()
,
ev
->
server_id
));
ev
->
get_type_str
(),
type_code
,
ev
->
server_id
));
DBUG_PRINT
(
"info"
,
(
"thd->options
={ %s%s}
"
,
DBUG_PRINT
(
"info"
,
(
"thd->options
: %s%s; rli->last_event_start_time: %lu
"
,
FLAGSTR
(
thd
->
options
,
OPTION_NOT_AUTOCOMMIT
),
FLAGSTR
(
thd
->
options
,
OPTION_NOT_AUTOCOMMIT
),
FLAGSTR
(
thd
->
options
,
OPTION_BEGIN
)));
FLAGSTR
(
thd
->
options
,
OPTION_BEGIN
),
rli
->
last_event_start_time
));
...
@@ -1782,21 +1784,21 @@ static int exec_relay_log_event(THD* thd, RELAY_LOG_INFO* rli)
...
@@ -1782,21 +1784,21 @@ static int exec_relay_log_event(THD* thd, RELAY_LOG_INFO* rli)
if
(
reason
==
Log_event
::
EVENT_SKIP_NOT
)
if
(
reason
==
Log_event
::
EVENT_SKIP_NOT
)
exec_res
=
ev
->
apply_event
(
rli
);
exec_res
=
ev
->
apply_event
(
rli
);
#ifndef DBUG_OFF
#ifndef DBUG_OFF
else
/*
{
This only prints information to the debug trace.
/*
This only prints information to the debug trace.
TODO: Print an informational message to the error log?
TODO: Print an informational message to the error log?
*/
*/
static
const
char
*
const
explain
[]
=
{
static
const
char
*
const
explain
[]
=
{
"event was not skipped"
,
// EVENT_SKIP_NOT,
// EVENT_SKIP_NOT,
"event originated from this server"
,
// EVENT_SKIP_IGNORE,
"not skipped"
,
"event skip counter was non-zero"
// EVENT_SKIP_COUNT
// EVENT_SKIP_IGNORE,
};
"skipped because event originated from this server"
,
DBUG_PRINT
(
"info"
,
(
"%s was skipped because %s"
,
// EVENT_SKIP_COUNT
ev
->
get_type_str
(),
explain
[
reason
]));
"skipped because event skip counter was non-zero"
}
};
DBUG_PRINT
(
"skip_event"
,
(
"%s event was %s"
,
ev
->
get_type_str
(),
explain
[
reason
]));
#endif
#endif
DBUG_PRINT
(
"info"
,
(
"apply_event error = %d"
,
exec_res
));
DBUG_PRINT
(
"info"
,
(
"apply_event error = %d"
,
exec_res
));
...
...
sql/slave.h
View file @
93860556
...
@@ -22,13 +22,18 @@
...
@@ -22,13 +22,18 @@
#include "my_list.h"
#include "my_list.h"
#include "rpl_filter.h"
#include "rpl_filter.h"
#include "rpl_tblmap.h"
#include "rpl_tblmap.h"
#include "rpl_rli.h"
#include "rpl_mi.h"
#define SLAVE_NET_TIMEOUT 3600
#define SLAVE_NET_TIMEOUT 3600
#define MAX_SLAVE_ERROR 2000
#define MAX_SLAVE_ERROR 2000
// Forward declarations
struct
st_relay_log_info
;
typedef
st_relay_log_info
RELAY_LOG_INFO
;
class
MASTER_INFO
;
/*****************************************************************************
/*****************************************************************************
MySQL Replication
MySQL Replication
...
...
sql/sql_binlog.cc
View file @
93860556
...
@@ -14,6 +14,7 @@
...
@@ -14,6 +14,7 @@
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include "mysql_priv.h"
#include "mysql_priv.h"
#include "rpl_rli.h"
#include "base64.h"
#include "base64.h"
/*
/*
...
...
sql/sql_class.cc
View file @
93860556
...
@@ -26,6 +26,7 @@
...
@@ -26,6 +26,7 @@
#endif
#endif
#include "mysql_priv.h"
#include "mysql_priv.h"
#include "rpl_rli.h"
#include <my_bitmap.h>
#include <my_bitmap.h>
#include "log_event.h"
#include "log_event.h"
#include <m_ctype.h>
#include <m_ctype.h>
...
...
sql/sql_class.h
View file @
93860556
...
@@ -21,9 +21,11 @@
...
@@ -21,9 +21,11 @@
#endif
#endif
#include "log.h"
#include "log.h"
#include "rpl_rli.h"
#include "rpl_tblmap.h"
#include "rpl_tblmap.h"
struct
st_relay_log_info
;
typedef
st_relay_log_info
RELAY_LOG_INFO
;
class
Query_log_event
;
class
Query_log_event
;
class
Load_log_event
;
class
Load_log_event
;
class
Slave_log_event
;
class
Slave_log_event
;
...
...
sql/sql_insert.cc
View file @
93860556
...
@@ -60,6 +60,7 @@
...
@@ -60,6 +60,7 @@
#include "sql_select.h"
#include "sql_select.h"
#include "sql_show.h"
#include "sql_show.h"
#include "slave.h"
#include "slave.h"
#include "rpl_mi.h"
#ifndef EMBEDDED_LIBRARY
#ifndef EMBEDDED_LIBRARY
static
TABLE
*
delayed_get_table
(
THD
*
thd
,
TABLE_LIST
*
table_list
);
static
TABLE
*
delayed_get_table
(
THD
*
thd
,
TABLE_LIST
*
table_list
);
...
...
sql/sql_repl.cc
View file @
93860556
...
@@ -16,6 +16,7 @@
...
@@ -16,6 +16,7 @@
#include "mysql_priv.h"
#include "mysql_priv.h"
#ifdef HAVE_REPLICATION
#ifdef HAVE_REPLICATION
#include "rpl_mi.h"
#include "sql_repl.h"
#include "sql_repl.h"
#include "log_event.h"
#include "log_event.h"
#include "rpl_filter.h"
#include "rpl_filter.h"
...
...
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