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
9372c9eb
Commit
9372c9eb
authored
Aug 03, 2015
by
Sreeharsha Ramanavarapu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #20909518: HANDLE_FATAL_SIGNAL (SIG=11) IN
FIND_USED_PARTITIONS | SQL/OPT_RANGE.CC:3884 Post-push fix.
parent
8006ad80
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
sql/opt_range.cc
sql/opt_range.cc
+1
-2
No files found.
sql/opt_range.cc
View file @
9372c9eb
...
...
@@ -3088,7 +3088,6 @@ int find_used_partitions(PART_PRUNE_PARAM *ppar, SEL_ARG *key_tree)
int
partno
=
(
int
)
key_tree
->
part
;
bool
pushed
=
FALSE
;
bool
set_full_part_if_bad_ret
=
FALSE
;
RANGE_OPT_PARAM
*
range_par
=
&
(
ppar
->
range_param
);
if
(
key_tree
->
left
!=
&
null_element
)
{
...
...
@@ -3149,7 +3148,7 @@ int find_used_partitions(PART_PRUNE_PARAM *ppar, SEL_ARG *key_tree)
The only case where we can get "no satisfying subpartitions"
returned from the above call is when an error has occurred.
*/
DBUG_ASSERT
(
range_par
->
thd
->
is_error
());
DBUG_ASSERT
(
ppar
->
range_param
.
thd
->
is_error
());
return
0
;
}
...
...
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