- Avoid some realloc() during startup
- Ensure that file_key_management_plugin frees it's memory early, even if
  it's linked statically.
- Fixed compiler warnings from unused variables and missing destructors
- Fixed wrong indentation
This commit is contained in:
Monty 2016-04-28 11:28:02 +03:00
commit fabeab7819
12 changed files with 55 additions and 31 deletions

View file

@ -347,10 +347,11 @@ public:
rpl_parallel parallel;
/*
The relay_log_state keeps track of the current binlog state of the execution
of the relay log. This is used to know where to resume current GTID position
if the slave thread is stopped and restarted.
It is only accessed from the SQL thread, so it does not need any locking.
The relay_log_state keeps track of the current binlog state of the
execution of the relay log. This is used to know where to resume
current GTID position if the slave thread is stopped and
restarted. It is only accessed from the SQL thread, so it does
not need any locking.
*/
rpl_binlog_state relay_log_state;
/*