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
32cab70c
Commit
32cab70c
authored
Aug 25, 2006
by
evgen@sunlight.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opt_range.cc:
Corrected fix for bug#18165
parent
7240c97d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
sql/opt_range.cc
sql/opt_range.cc
+4
-2
No files found.
sql/opt_range.cc
View file @
32cab70c
...
...
@@ -3609,8 +3609,10 @@ static SEL_TREE *get_func_mm_tree(PARAM *param, Item_func *cond_func,
else
tree
=
get_mm_parts
(
param
,
cond_func
,
field
,
(
inv
?
(
value
==
1
?
Item_func
::
GT_FUNC
:
Item_func
::
LT_FUNC
)
:
(
value
==
1
?
Item_func
::
LE_FUNC
:
Item_func
::
GE_FUNC
)),
(
value
==
(
Item
*
)
1
?
Item_func
::
GT_FUNC
:
Item_func
::
LT_FUNC
)
:
(
value
==
(
Item
*
)
1
?
Item_func
::
LE_FUNC
:
Item_func
::
GE_FUNC
)),
cond_func
->
arguments
()[
0
],
cmp_type
);
break
;
}
...
...
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