1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Fixing portability issues regarding use of time_t.

This commit is contained in:
mats@romeo.(none)
2007-04-13 10:40:22 +02:00
parent 75c1242de8
commit df53e89fca
2 changed files with 3 additions and 3 deletions

View File

@@ -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,
time_t event_creation_time)
my_time_t event_creation_time)
{
clear_flag(IN_STMT);

View File

@@ -184,7 +184,7 @@ typedef struct st_relay_log_info
ulonglong future_group_master_log_pos;
#endif
time_t last_master_timestamp;
my_time_t last_master_timestamp;
void clear_slave_error();
void clear_until_condition();
@@ -345,7 +345,7 @@ typedef struct st_relay_log_info
the <code>Seconds_behind_master</code> field.
*/
void stmt_done(my_off_t event_log_pos,
time_t event_creation_time);
my_time_t event_creation_time);
/**