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
19f2b3d0
Commit
19f2b3d0
authored
Aug 05, 2017
by
Monty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compiler warnings
parent
74543698
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
extra/mariabackup/xtrabackup.cc
extra/mariabackup/xtrabackup.cc
+0
-1
sql/item_func.cc
sql/item_func.cc
+1
-1
sql/slave.cc
sql/slave.cc
+2
-0
No files found.
extra/mariabackup/xtrabackup.cc
View file @
19f2b3d0
...
...
@@ -6445,7 +6445,6 @@ int main(int argc, char **argv)
{
char
**
client_defaults
,
**
server_defaults
;
char
cwd
[
FN_REFLEN
];
static
char
INNOBACKUPEX_EXE
[]
=
"innobackupex"
;
if
(
argc
>
1
&&
(
strcmp
(
argv
[
1
],
"--innobackupex"
)
==
0
))
{
argv
++
;
...
...
sql/item_func.cc
View file @
19f2b3d0
...
...
@@ -3959,7 +3959,7 @@ longlong Item_master_gtid_wait::val_int()
{
DBUG_ASSERT
(
fixed
==
1
);
longlong
result
=
0
;
String
*
gtid_pos
=
args
[
0
]
->
val_str
(
&
value
);
String
*
gtid_pos
__attribute__
((
unused
))
=
args
[
0
]
->
val_str
(
&
value
);
if
(
args
[
0
]
->
null_value
)
{
...
...
sql/slave.cc
View file @
19f2b3d0
...
...
@@ -3611,7 +3611,9 @@ int
apply_event_and_update_pos_for_parallel
(
Log_event
*
ev
,
THD
*
thd
,
rpl_group_info
*
rgi
)
{
#ifndef DBUG_OFF
Relay_log_info
*
rli
=
rgi
->
rli
;
#endif
mysql_mutex_assert_not_owner
(
&
rli
->
data_lock
);
int
reason
=
apply_event_and_update_pos_setup
(
ev
,
thd
,
rgi
);
/*
...
...
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