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
88f0e0eb
Commit
88f0e0eb
authored
Nov 25, 2013
by
Nirbhay Choubey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-4108 Compilation warnings with RelWithDebInfo
only present in the Galera tree Fix for some compiler warnings.
parent
071edcfe
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
10 deletions
+12
-10
mysys/my_getopt.c
mysys/my_getopt.c
+0
-3
sql/handler.cc
sql/handler.cc
+7
-0
sql/sql_parse.cc
sql/sql_parse.cc
+1
-1
sql/sql_table.cc
sql/sql_table.cc
+2
-4
storage/innobase/lock/lock0lock.c
storage/innobase/lock/lock0lock.c
+1
-1
storage/xtradb/lock/lock0lock.c
storage/xtradb/lock/lock0lock.c
+1
-1
No files found.
mysys/my_getopt.c
View file @
88f0e0eb
...
...
@@ -840,7 +840,6 @@ static int findopt(char *optpat, uint length,
{
uint
count
;
const
struct
my_option
*
opt
=
*
opt_res
;
my_bool
is_prefix
=
FALSE
;
DBUG_ENTER
(
"findopt"
);
for
(
count
=
0
;
opt
->
name
;
opt
++
)
...
...
@@ -856,8 +855,6 @@ static int findopt(char *optpat, uint length,
/* We only need to know one prev */
count
=
1
;
*
ffname
=
opt
->
name
;
if
(
opt
->
name
[
length
])
is_prefix
=
TRUE
;
}
else
if
(
strcmp
(
*
ffname
,
opt
->
name
))
{
...
...
sql/handler.cc
View file @
88f0e0eb
...
...
@@ -1297,7 +1297,9 @@ int ha_commit_trans(THD *thd, bool all)
*/
err
=
ht
->
prepare
(
ht
,
thd
,
all
);
status_var_increment
(
thd
->
status_var
.
ha_prepare_count
);
if
(
err
)
{
#ifdef WITH_WSREP
if
(
WSREP
(
thd
)
&&
ht
->
db_type
==
DB_TYPE_WSREP
)
{
...
...
@@ -1309,9 +1311,14 @@ int ha_commit_trans(THD *thd, bool all)
}
}
else
{
/* not wsrep hton, bail to native mysql behavior */
#endif
my_error
(
ER_ERROR_DURING_COMMIT
,
MYF
(
0
),
err
);
#ifdef WITH_WSREP
}
/* End of else */
#endif
}
if
(
err
)
goto
err
;
...
...
sql/sql_parse.cc
View file @
88f0e0eb
...
...
@@ -8220,7 +8220,7 @@ static inline wsrep_status_t wsrep_apply_rbr(
if
(
!
ev
)
{
WSREP_ERROR
(
"applier could not read binlog event, seqno: %lld, len: %ld"
,
(
long
long
)
thd
->
wsrep_trx_seqno
,
buf_len
);
(
long
long
)
thd
->
wsrep_trx_seqno
,
(
long
int
)
buf_len
);
rcode
=
1
;
goto
error
;
}
...
...
sql/sql_table.cc
View file @
88f0e0eb
...
...
@@ -6368,10 +6368,8 @@ bool mysql_alter_table(THD *thd,char *new_db, char *new_name,
error
=
0
;
break
;
}
#ifdef WITH_WSREP
bool
do_log_write
(
true
);
#endif
/* WITH_WSREP */
if
(
error
==
HA_ERR_WRONG_COMMAND
)
if
(
error
==
HA_ERR_WRONG_COMMAND
)
{
error
=
0
;
push_warning_printf
(
thd
,
MYSQL_ERROR
::
WARN_LEVEL_NOTE
,
...
...
storage/innobase/lock/lock0lock.c
View file @
88f0e0eb
...
...
@@ -2231,7 +2231,7 @@ lock_rec_lock_slow(
{
trx_t
*
trx
;
#ifdef WITH_WSREP
lock_t
*
c_lock
;
lock_t
*
c_lock
=
0
;
#endif
lock_t
*
lock
;
...
...
storage/xtradb/lock/lock0lock.c
View file @
88f0e0eb
...
...
@@ -2211,7 +2211,7 @@ lock_rec_lock_slow(
{
trx_t
*
trx
;
#ifdef WITH_WSREP
lock_t
*
c_lock
;
lock_t
*
c_lock
=
0
;
#endif
lock_t
*
lock
;
...
...
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