Merge bb-10.2-ext into 10.3

This commit is contained in:
Marko Mäkelä 2018-01-13 20:37:00 +02:00
commit 2750a02065
2 changed files with 4 additions and 4 deletions

View file

@ -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;
/*****************************************************************************

View file

@ -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)
{
@ -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)
{