Commit 24964ff3 authored by unknown's avatar unknown

Reverting to use time_t instead of my_time_t since the latter caused

compile warnings on windows machines.

parent daf99c70
...@@ -3460,7 +3460,7 @@ static Log_event* next_event(RELAY_LOG_INFO* rli) ...@@ -3460,7 +3460,7 @@ static Log_event* next_event(RELAY_LOG_INFO* rli)
the events have old timestamps (then you get "many", 0, "many"). the events have old timestamps (then you get "many", 0, "many").
Transient phases like this can't really be fixed. Transient phases like this can't really be fixed.
*/ */
my_time_t save_timestamp= rli->last_master_timestamp; time_t save_timestamp= rli->last_master_timestamp;
rli->last_master_timestamp= 0; rli->last_master_timestamp= 0;
DBUG_ASSERT(rli->relay_log.get_open_count() == DBUG_ASSERT(rli->relay_log.get_open_count() ==
......
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