Commit d54c905f authored by unknown's avatar unknown

Fixing portability issues regarding use of time_t.


sql/rpl_rli.cc:
  Changing signature for stmt_done() to use my_time_t instead of time_t.
sql/rpl_rli.h:
  Changing signature for stmt_done() to use my_time_t instead of time_t.
  Changing last_master_timestamp to use my_time_t instead of time_t.
parent c301a05e
...@@ -1088,7 +1088,7 @@ bool st_relay_log_info::cached_charset_compare(char *charset) const ...@@ -1088,7 +1088,7 @@ bool st_relay_log_info::cached_charset_compare(char *charset) const
void st_relay_log_info::stmt_done(my_off_t const event_master_log_pos, void st_relay_log_info::stmt_done(my_off_t const event_master_log_pos,
time_t event_creation_time) my_time_t event_creation_time)
{ {
clear_flag(IN_STMT); clear_flag(IN_STMT);
......
...@@ -184,7 +184,7 @@ typedef struct st_relay_log_info ...@@ -184,7 +184,7 @@ typedef struct st_relay_log_info
ulonglong future_group_master_log_pos; ulonglong future_group_master_log_pos;
#endif #endif
time_t last_master_timestamp; my_time_t last_master_timestamp;
void clear_slave_error(); void clear_slave_error();
void clear_until_condition(); void clear_until_condition();
...@@ -345,7 +345,7 @@ typedef struct st_relay_log_info ...@@ -345,7 +345,7 @@ typedef struct st_relay_log_info
the <code>Seconds_behind_master</code> field. the <code>Seconds_behind_master</code> field.
*/ */
void stmt_done(my_off_t event_log_pos, void stmt_done(my_off_t event_log_pos,
time_t event_creation_time); my_time_t event_creation_time);
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment