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
88cc78c9
Commit
88cc78c9
authored
Jan 01, 2019
by
Michael Widenius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed compiler warnings
parent
17b73fb9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
5 deletions
+2
-5
sql/opt_range.cc
sql/opt_range.cc
+0
-4
storage/innobase/srv/srv0srv.cc
storage/innobase/srv/srv0srv.cc
+2
-1
No files found.
sql/opt_range.cc
View file @
88cc78c9
...
...
@@ -2841,10 +2841,6 @@ bool create_key_parts_for_pseudo_indexes(RANGE_OPT_PARAM *param,
{
Field
**
field_ptr
;
TABLE
*
table
=
param
->
table
;
partition_info
*
part_info
=
NULL
;
#ifdef WITH_PARTITION_STORAGE_ENGINE
part_info
=
table
->
part_info
;
#endif
uint
parts
=
0
;
for
(
field_ptr
=
table
->
field
;
*
field_ptr
;
field_ptr
++
)
...
...
storage/innobase/srv/srv0srv.cc
View file @
88cc78c9
...
...
@@ -2402,6 +2402,7 @@ DECLARE_THREAD(srv_master_thread)(
/** @return whether purge should exit due to shutdown */
static
bool
srv_purge_should_exit
()
{
uint32_t
history_size
__attribute__
((
unused
));
ut_ad
(
srv_shutdown_state
==
SRV_SHUTDOWN_NONE
||
srv_shutdown_state
==
SRV_SHUTDOWN_CLEANUP
);
...
...
@@ -2412,7 +2413,7 @@ static bool srv_purge_should_exit()
return
(
true
);
}
/* Slow shutdown was requested. */
if
(
uint32_t
history_size
=
trx_sys
.
rseg_history_len
)
{
if
(
(
history_size
=
trx_sys
.
rseg_history_len
)
)
{
#if defined HAVE_SYSTEMD && !defined EMBEDDED_LIBRARY
static
ib_time_t
progress_time
;
ib_time_t
time
=
ut_time
();
...
...
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