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
#include "myisam_priv.h"
17
#include <drizzled/util/test.h>
19
using namespace drizzled;
22
** Find current row with read on position or read on key
23
** If inx >= 0 find record using key
26
** HA_ERR_KEY_NOT_FOUND = Row is deleted
27
** HA_ERR_END_OF_FILE = End of file
31
int mi_rsame(MI_INFO *info, unsigned char *record, int inx)
33
if (inx != -1 && ! mi_is_key_active(info->s->state.key_map, inx))
35
return(errno=HA_ERR_WRONG_INDEX);
37
if (info->lastpos == HA_OFFSET_ERROR || info->update & HA_STATE_DELETED)
39
return(errno=HA_ERR_KEY_NOT_FOUND); /* No current record */
41
info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
43
/* Read row from data file */
44
if (fast_mi_readinfo(info))
50
info->lastkey_length=_mi_make_key(info,(uint) inx,info->lastkey,record,
52
if (info->s->concurrent_insert)
53
pthread_rwlock_rdlock(&info->s->key_root_lock[inx]);
54
_mi_search(info,info->s->keyinfo+inx,info->lastkey, USE_WHOLE_KEY,
56
info->s->state.key_root[inx]);
57
if (info->s->concurrent_insert)
58
pthread_rwlock_unlock(&info->s->key_root_lock[inx]);
61
if (!(*info->read_record)(info,info->lastpos,record))
63
if (errno == HA_ERR_RECORD_DELETED)
64
errno=HA_ERR_KEY_NOT_FOUND;