mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 07:35:32 +02:00
WL#3153 "Split logs". Recommit with post-review fixes
sql/ha_ndbcluster_binlog.cc: use MYSQL_BIN_LOG instead of MYSQL_LOG sql/log.cc: Split MYSQL_LOG into base MYSQL_LOG and MYSQL_GENERAL_LOG, MYSQL_SLOW_LOG, MYSQL_BIN_LOG sql/log.h: Split MYSQL_LOG into base MYSQL_LOG and MYSQL_GENERAL_LOG, MYSQL_SLOW_LOG, MYSQL_BIN_LOG sql/log_event.h: use MYSQL_BIN_LOG instead of MYSQL_LOG sql/mysql_priv.h: use MYSQL_BIN_LOG instead of MYSQL_LOG sql/mysqld.cc: fix appropriate comments: use MYSQL_BIN_LOG instead of MYSQL_LOG sql/rpl_injector.cc: use MYSQL_BIN_LOG instead of MYSQL_LOG sql/rpl_injector.h: use MYSQL_BIN_LOG instead of MYSQL_LOG sql/rpl_rli.h: use MYSQL_BIN_LOG instead of MYSQL_LOG sql/slave.cc: Fix appropriate comments: use MYSQL_BIN_LOG instead of MYSQL_LOG. Fix usage of new_file(): now we don't need to pass locking-related info to the function. sql/slave.h: Use MYSQL_BIN_LOG instead of MYSQL_LOG in appropriate comments
This commit is contained in:
parent
485fbfb68e
commit
51e0c5187b
11 changed files with 691 additions and 481 deletions
|
|
@ -26,7 +26,7 @@
|
|||
|
||||
/* Forward declarations */
|
||||
class handler;
|
||||
class MYSQL_LOG;
|
||||
class MYSQL_BIN_LOG;
|
||||
class st_table;
|
||||
|
||||
typedef st_table TABLE;
|
||||
|
|
@ -219,7 +219,7 @@ public:
|
|||
|
||||
private:
|
||||
/* Only the injector may construct these object */
|
||||
transaction(MYSQL_LOG *, THD *);
|
||||
transaction(MYSQL_BIN_LOG *, THD *);
|
||||
|
||||
void swap(transaction& o) {
|
||||
/* std::swap(m_start_pos, o.m_start_pos); */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue