Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
2750a020
Commit
2750a020
authored
Jan 13, 2018
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Plain Diff
Merge bb-10.2-ext into 10.3
parents
70fff368
68e5d6a9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
sql/rpl_mi.h
sql/rpl_mi.h
+2
-2
sql/slave.cc
sql/slave.cc
+2
-2
No files found.
sql/rpl_mi.h
View file @
2750a020
...
...
@@ -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
;
/*****************************************************************************
...
...
sql/slave.cc
View file @
2750a020
...
...
@@ -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
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment