1
by brian
clean slate |
1 |
/* Copyright (C) 2000-2002, 2004 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 |
||
18 |
/* Read first record with the current key */
|
|
19 |
||
20 |
int heap_rfirst(HP_INFO *info, uchar *record, int inx) |
|
21 |
{
|
|
22 |
HP_SHARE *share = info->s; |
|
23 |
HP_KEYDEF *keyinfo = share->keydef + inx; |
|
24 |
||
25 |
info->lastinx= inx; |
|
26 |
if (keyinfo->algorithm == HA_KEY_ALG_BTREE) |
|
27 |
{
|
|
28 |
uchar *pos; |
|
29 |
||
30 |
if ((pos = tree_search_edge(&keyinfo->rb_tree, info->parents, |
|
31 |
&info->last_pos, offsetof(TREE_ELEMENT, left)))) |
|
32 |
{
|
|
33 |
memcpy(&pos, pos + (*keyinfo->get_key_length)(keyinfo, pos), |
|
34 |
sizeof(uchar*)); |
|
35 |
info->current_ptr = pos; |
|
244.1.1
by Harrison Fisk
Port Ebay/Google memory storage engine variable width columns. |
36 |
hp_extract_record(share, record, pos); |
1
by brian
clean slate |
37 |
/*
|
38 |
If we're performing index_first on a table that was taken from
|
|
39 |
table cache, info->lastkey_len is initialized to previous query.
|
|
40 |
Thus we set info->lastkey_len to proper value for subsequent
|
|
41 |
heap_rnext() calls.
|
|
42 |
This is needed for DELETE queries only, otherwise this variable is
|
|
43 |
not used.
|
|
44 |
Note that the same workaround may be needed for heap_rlast(), but
|
|
45 |
for now heap_rlast() is never used for DELETE queries.
|
|
46 |
*/
|
|
47 |
info->lastkey_len= 0; |
|
48 |
info->update = HA_STATE_AKTIV; |
|
49 |
}
|
|
50 |
else
|
|
51 |
{
|
|
52 |
my_errno = HA_ERR_END_OF_FILE; |
|
51.3.1
by Jay Pipes
Removed all DBUG symbols from heap storage engine |
53 |
return(my_errno); |
1
by brian
clean slate |
54 |
}
|
51.3.1
by Jay Pipes
Removed all DBUG symbols from heap storage engine |
55 |
return(0); |
1
by brian
clean slate |
56 |
}
|
57 |
else
|
|
58 |
{
|
|
59 |
if (!(info->s->records)) |
|
60 |
{
|
|
61 |
my_errno=HA_ERR_END_OF_FILE; |
|
51.3.1
by Jay Pipes
Removed all DBUG symbols from heap storage engine |
62 |
return(my_errno); |
1
by brian
clean slate |
63 |
}
|
51.3.1
by Jay Pipes
Removed all DBUG symbols from heap storage engine |
64 |
assert(0); /* TODO fix it */ |
1
by brian
clean slate |
65 |
info->current_record=0; |
66 |
info->current_hash_ptr=0; |
|
67 |
info->update=HA_STATE_PREV_FOUND; |
|
51.3.1
by Jay Pipes
Removed all DBUG symbols from heap storage engine |
68 |
return(heap_rnext(info,record)); |
1
by brian
clean slate |
69 |
}
|
70 |
}
|