1
/* Copyright (C) 2000-2002, 2004 MySQL AB
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.
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.
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 */
18
/* Read first record with the current key */
20
int heap_rfirst(HP_INFO *info, uchar *record, int inx)
22
HP_SHARE *share = info->s;
23
HP_KEYDEF *keyinfo = share->keydef + inx;
25
DBUG_ENTER("heap_rfirst");
27
if (keyinfo->algorithm == HA_KEY_ALG_BTREE)
31
if ((pos = tree_search_edge(&keyinfo->rb_tree, info->parents,
32
&info->last_pos, offsetof(TREE_ELEMENT, left))))
34
memcpy(&pos, pos + (*keyinfo->get_key_length)(keyinfo, pos),
36
info->current_ptr = pos;
37
memcpy(record, pos, (size_t)share->reclength);
39
If we're performing index_first on a table that was taken from
40
table cache, info->lastkey_len is initialized to previous query.
41
Thus we set info->lastkey_len to proper value for subsequent
43
This is needed for DELETE queries only, otherwise this variable is
45
Note that the same workaround may be needed for heap_rlast(), but
46
for now heap_rlast() is never used for DELETE queries.
49
info->update = HA_STATE_AKTIV;
53
my_errno = HA_ERR_END_OF_FILE;
54
DBUG_RETURN(my_errno);
60
if (!(info->s->records))
62
my_errno=HA_ERR_END_OF_FILE;
63
DBUG_RETURN(my_errno);
65
DBUG_ASSERT(0); /* TODO fix it */
66
info->current_record=0;
67
info->current_hash_ptr=0;
68
info->update=HA_STATE_PREV_FOUND;
69
DBUG_RETURN(heap_rnext(info,record));