1
/* Copyright (C) 2000-2001, 2005 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 */
16
/* read record through position and fix key-position */
17
/* As mi_rsame but supply a position */
19
#include "myisamdef.h"
23
** If inx >= 0 update index pointer
24
** Returns one of the following values:
26
** HA_ERR_KEY_NOT_FOUND = Row is deleted
27
** HA_ERR_END_OF_FILE = End of file
30
int mi_rsame_with_pos(MI_INFO *info, uchar *record, int inx, my_off_t filepos)
32
DBUG_ENTER("mi_rsame_with_pos");
33
DBUG_PRINT("enter",("index: %d filepos: %ld", inx, (long) filepos));
36
(inx >= 0 && ! mi_is_key_active(info->s->state.key_map, inx)))
38
DBUG_RETURN(my_errno=HA_ERR_WRONG_INDEX);
41
info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
42
if ((*info->s->read_rnd)(info,record,filepos,0))
44
if (my_errno == HA_ERR_RECORD_DELETED)
45
my_errno=HA_ERR_KEY_NOT_FOUND;
46
DBUG_RETURN(my_errno);
48
info->lastpos=filepos;
52
info->lastkey_length=_mi_make_key(info,(uint) inx,info->lastkey,record,
54
info->update|=HA_STATE_KEY_CHANGED; /* Don't use indexposition */