Skip to content

Commit

Permalink
Merge bb-10.2-ext into 10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Jan 13, 2018
2 parents 70fff36 + 68e5d6a commit 2750a02
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions sql/rpl_mi.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,11 @@ typedef struct st_rows_event_tracker
my_off_t first_seen;
my_off_t last_seen;
bool stmt_end_seen;
void update(const char* file_name, size_t pos,
void update(const char* file_name, my_off_t pos,
const char* buf,
const Format_description_log_event *fdle);
void reset();
bool check_and_report(const char* file_name, size_t pos);
bool check_and_report(const char* file_name, my_off_t pos);
} Rows_event_tracker;

/*****************************************************************************
Expand Down
4 changes: 2 additions & 2 deletions sql/slave.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7976,7 +7976,7 @@ void Rows_event_tracker::reset()
well as the end-of-statement status of the last one.
*/

void Rows_event_tracker::update(const char* file_name, size_t pos,
void Rows_event_tracker::update(const char* file_name, my_off_t pos,
const char* buf,
const Format_description_log_event *fdle)
{
Expand All @@ -8001,7 +8001,7 @@ void Rows_event_tracker::update(const char* file_name, size_t pos,
false otherwise.
*/
bool Rows_event_tracker::check_and_report(const char* file_name,
size_t pos)
my_off_t pos)
{
if (last_seen)
{
Expand Down

0 comments on commit 2750a02

Please sign in to comment.