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
b0542bd9
Commit
b0542bd9
authored
Oct 25, 2002
by
serg@serg.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
full support for HA_READ_PREFIX_LAST_OR_PREV in ISAM
parent
d552ba7d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
isam/_search.c
isam/_search.c
+1
-1
isam/static.c
isam/static.c
+1
-1
No files found.
isam/_search.c
View file @
b0542bd9
...
...
@@ -118,7 +118,7 @@ int _nisam_search(register N_INFO *info, register N_KEYDEF *keyinfo, uchar *key,
if
((
nextflag
&
(
SEARCH_SMALLER
|
SEARCH_LAST
))
&&
flag
!=
0
)
{
keypos
=
_nisam_get_last_key
(
info
,
keyinfo
,
buff
,
lastkey
,
keypos
);
if
(
(
nextflag
&
SEARCH_LAST
)
&&
if
(
!
(
nextflag
&
SEARCH_SMALLER
)
&&
_nisam_key_cmp
(
keyinfo
->
seg
,
info
->
lastkey
,
key
,
key_len
,
SEARCH_FIND
))
{
my_errno
=
HA_ERR_KEY_NOT_FOUND
;
/* Didn't find key */
...
...
isam/static.c
View file @
b0542bd9
...
...
@@ -41,5 +41,5 @@ uint NEAR nisam_read_vec[]=
{
SEARCH_FIND
,
SEARCH_FIND
|
SEARCH_BIGGER
,
SEARCH_FIND
|
SEARCH_SMALLER
,
SEARCH_NO_FIND
|
SEARCH_BIGGER
,
SEARCH_NO_FIND
|
SEARCH_SMALLER
,
SEARCH_FIND
,
SEARCH_LAST
SEARCH_FIND
,
SEARCH_LAST
,
SEARCH_LAST
|
SEARCH_SMALLER
};
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