diff options
author | Monty <monty@mariadb.org> | 2016-04-28 11:28:02 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2016-04-28 16:36:02 +0300 |
commit | fabeab781920dfcaf8e606708ba2c6812f6ae5d8 (patch) | |
tree | d3a17702cbc67ed2d31f820e4b2f0988436e86b6 /sql/rpl_rli.h | |
parent | dafed5b51591ad85ef7724156f135d5be8fe698d (diff) | |
download | mariadb-git-fabeab781920dfcaf8e606708ba2c6812f6ae5d8.tar.gz |
Cleanups
- 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
Diffstat (limited to 'sql/rpl_rli.h')
-rw-r--r-- | sql/rpl_rli.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sql/rpl_rli.h b/sql/rpl_rli.h index e896c189a8e..3eaee90d0f6 100644 --- a/sql/rpl_rli.h +++ b/sql/rpl_rli.h @@ -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; /* |