mirror of
https://github.com/MariaDB/server.git
synced 2026-04-19 06:45:32 +02:00
Merge bb-10.2-ext into 10.3
This commit is contained in:
commit
2750a02065
2 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
|
||||
/*****************************************************************************
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue