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.cc | |
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.cc')
-rw-r--r-- | sql/rpl_utility.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/rpl_utility.cc b/sql/rpl_utility.cc index 25daf1471ce..bc552650ac5 100644 --- a/sql/rpl_utility.cc +++ b/sql/rpl_utility.cc @@ -164,7 +164,7 @@ uint32 table_def::calc_field_size(uint col, uchar *master_data) */ int -table_def::compatible_with(RELAY_LOG_INFO const *rli_arg, TABLE *table) +table_def::compatible_with(Relay_log_info const *rli_arg, TABLE *table) const { /* @@ -172,7 +172,7 @@ table_def::compatible_with(RELAY_LOG_INFO const *rli_arg, TABLE *table) */ uint const cols_to_check= min(table->s->fields, size()); int error= 0; - RELAY_LOG_INFO const *rli= const_cast<RELAY_LOG_INFO*>(rli_arg); + Relay_log_info const *rli= const_cast<Relay_log_info*>(rli_arg); TABLE_SHARE const *const tsh= table->s; |