diff options
author | mats@kindahl-laptop.dnsalias.net <> | 2007-08-16 07:37:50 +0200 |
---|---|---|
committer | mats@kindahl-laptop.dnsalias.net <> | 2007-08-16 07:37:50 +0200 |
commit | 9c4ef25c55861b403dbc964b32a4297f03c8ba66 (patch) | |
tree | 60e368275522a93827d2542c48a28dede4305037 /sql/rpl_utility.h | |
parent | 57df03de46da737433465347bfc0d521f6d4c85d (diff) | |
download | mariadb-git-9c4ef25c55861b403dbc964b32a4297f03c8ba66.tar.gz |
Renaming RELAY_LOG_INFO and st_relay_log_info to follow coding standards
(and be more friendly to Doxygen by removing unnecessary typedefs).
Diffstat (limited to 'sql/rpl_utility.h')
-rw-r--r-- | sql/rpl_utility.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sql/rpl_utility.h b/sql/rpl_utility.h index e0e78bf402b..eac3d14dfc6 100644 --- a/sql/rpl_utility.h +++ b/sql/rpl_utility.h @@ -22,8 +22,7 @@ #include "mysql_priv.h" -struct st_relay_log_info; -typedef st_relay_log_info RELAY_LOG_INFO; +class Relay_log_info; /** @@ -237,7 +236,7 @@ public: @retval 1 if the table definition is not compatible with @c table @retval 0 if the table definition is compatible with @c table */ - int compatible_with(RELAY_LOG_INFO const *rli, TABLE *table) const; + int compatible_with(Relay_log_info const *rli, TABLE *table) const; private: ulong m_size; // Number of elements in the types array |