1
by brian
clean slate |
1 |
/* Copyright (C) 2000-2002 MySQL AB
|
2 |
||
3 |
This program is free software; you can redistribute it and/or modify
|
|
4 |
it under the terms of the GNU General Public License as published by
|
|
5 |
the Free Software Foundation; version 2 of the License.
|
|
6 |
||
7 |
This program is distributed in the hope that it will be useful,
|
|
8 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
9 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
10 |
GNU General Public License for more details.
|
|
11 |
||
12 |
You should have received a copy of the GNU General Public License
|
|
13 |
along with this program; if not, write to the Free Software
|
|
14 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
15 |
||
16 |
#include "heapdef.h" |
|
17 |
||
612.2.13
by Monty Taylor
Work on removing global.h from headers that should be installed. |
18 |
#include <string.h> |
19 |
||
1
by brian
clean slate |
20 |
/* Read first record with the current key */
|
21 |
||
22 |
||
481
by Brian Aker
Remove all of uchar. |
23 |
int heap_rlast(HP_INFO *info, unsigned char *record, int inx) |
1
by brian
clean slate |
24 |
{
|
25 |
HP_SHARE *share= info->s; |
|
26 |
HP_KEYDEF *keyinfo= share->keydef + inx; |
|
27 |
||
28 |
info->lastinx= inx; |
|
29 |
if (keyinfo->algorithm == HA_KEY_ALG_BTREE) |
|
30 |
{
|
|
481
by Brian Aker
Remove all of uchar. |
31 |
unsigned char *pos; |
1
by brian
clean slate |
32 |
|
33 |
if ((pos = tree_search_edge(&keyinfo->rb_tree, info->parents, |
|
34 |
&info->last_pos, offsetof(TREE_ELEMENT, right)))) |
|
35 |
{
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
36 |
memcpy(&pos, pos + (*keyinfo->get_key_length)(keyinfo, pos), |
481
by Brian Aker
Remove all of uchar. |
37 |
sizeof(unsigned char*)); |
1
by brian
clean slate |
38 |
info->current_ptr = pos; |
244.1.1
by Harrison Fisk
Port Ebay/Google memory storage engine variable width columns. |
39 |
hp_extract_record(share, record, pos); |
1
by brian
clean slate |
40 |
info->update = HA_STATE_AKTIV; |
41 |
}
|
|
42 |
else
|
|
43 |
{
|
|
44 |
my_errno = HA_ERR_END_OF_FILE; |
|
51.3.1
by Jay Pipes
Removed all DBUG symbols from heap storage engine |
45 |
return(my_errno); |
1
by brian
clean slate |
46 |
}
|
51.3.1
by Jay Pipes
Removed all DBUG symbols from heap storage engine |
47 |
return(0); |
1
by brian
clean slate |
48 |
}
|
49 |
else
|
|
50 |
{
|
|
51 |
info->current_ptr=0; |
|
52 |
info->current_hash_ptr=0; |
|
53 |
info->update=HA_STATE_NEXT_FOUND; |
|
51.3.1
by Jay Pipes
Removed all DBUG symbols from heap storage engine |
54 |
return(heap_rprev(info,record)); |
1
by brian
clean slate |
55 |
}
|
56 |
}
|