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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
449fe80f
Commit
449fe80f
authored
Oct 06, 2008
by
Alexey Botchkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
keep compiler happy
parent
afbb52c4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
sql/sql_partition.cc
sql/sql_partition.cc
+8
-0
No files found.
sql/sql_partition.cc
View file @
449fe80f
...
...
@@ -2999,6 +2999,8 @@ int get_partition_id_range_sub_hash(partition_info *part_info,
longlong
local_func_value
;
int
error
;
DBUG_ENTER
(
"get_partition_id_range_sub_hash"
);
LINT_INIT
(
loc_part_id
);
LINT_INIT
(
sub_part_id
);
if
(
unlikely
((
error
=
get_partition_id_range
(
part_info
,
&
loc_part_id
,
func_value
))))
...
...
@@ -3026,6 +3028,8 @@ int get_partition_id_range_sub_linear_hash(partition_info *part_info,
longlong
local_func_value
;
int
error
;
DBUG_ENTER
(
"get_partition_id_range_sub_linear_hash"
);
LINT_INIT
(
loc_part_id
);
LINT_INIT
(
sub_part_id
);
if
(
unlikely
((
error
=
get_partition_id_range
(
part_info
,
&
loc_part_id
,
func_value
))))
...
...
@@ -3055,6 +3059,7 @@ int get_partition_id_range_sub_key(partition_info *part_info,
longlong
local_func_value
;
int
error
;
DBUG_ENTER
(
"get_partition_id_range_sub_key"
);
LINT_INIT
(
loc_part_id
);
if
(
unlikely
((
error
=
get_partition_id_range
(
part_info
,
&
loc_part_id
,
func_value
))))
...
...
@@ -3078,6 +3083,7 @@ int get_partition_id_range_sub_linear_key(partition_info *part_info,
longlong
local_func_value
;
int
error
;
DBUG_ENTER
(
"get_partition_id_range_sub_linear_key"
);
LINT_INIT
(
loc_part_id
);
if
(
unlikely
((
error
=
get_partition_id_range
(
part_info
,
&
loc_part_id
,
func_value
))))
...
...
@@ -3102,6 +3108,7 @@ int get_partition_id_list_sub_hash(partition_info *part_info,
longlong
local_func_value
;
int
error
;
DBUG_ENTER
(
"get_partition_id_list_sub_hash"
);
LINT_INIT
(
sub_part_id
);
if
(
unlikely
((
error
=
get_partition_id_list
(
part_info
,
&
loc_part_id
,
func_value
))))
...
...
@@ -3129,6 +3136,7 @@ int get_partition_id_list_sub_linear_hash(partition_info *part_info,
longlong
local_func_value
;
int
error
;
DBUG_ENTER
(
"get_partition_id_list_sub_linear_hash"
);
LINT_INIT
(
sub_part_id
);
if
(
unlikely
((
error
=
get_partition_id_list
(
part_info
,
&
loc_part_id
,
func_value
))))
...
...
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