~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2000-2001, 2005 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
/* read record through position and fix key-position */
17
/* As mi_rsame but supply a position */
18
19
#include "myisamdef.h"
20
21
22
	/*
23
	** If inx >= 0 update index pointer
24
	** Returns one of the following values:
25
	**  0 = Ok.
26
	** HA_ERR_KEY_NOT_FOUND = Row is deleted
27
	** HA_ERR_END_OF_FILE   = End of file
28
	*/
29
30
int mi_rsame_with_pos(MI_INFO *info, uchar *record, int inx, my_off_t filepos)
31
{
32
  if (inx < -1 ||
33
      (inx >= 0 && ! mi_is_key_active(info->s->state.key_map, inx)))
34
  {
51.1.109 by Jay Pipes
Removed/replaced DBUG
35
    return(my_errno=HA_ERR_WRONG_INDEX);
1 by brian
clean slate
36
  }
37
38
  info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
39
  if ((*info->s->read_rnd)(info,record,filepos,0))
40
  {
41
    if (my_errno == HA_ERR_RECORD_DELETED)
42
      my_errno=HA_ERR_KEY_NOT_FOUND;
51.1.109 by Jay Pipes
Removed/replaced DBUG
43
    return(my_errno);
1 by brian
clean slate
44
  }
45
  info->lastpos=filepos;
46
  info->lastinx=inx;
47
  if (inx >= 0)
48
  {
49
    info->lastkey_length=_mi_make_key(info,(uint) inx,info->lastkey,record,
50
				      info->lastpos);
51
    info->update|=HA_STATE_KEY_CHANGED;		/* Don't use indexposition */
52
  }
51.1.109 by Jay Pipes
Removed/replaced DBUG
53
  return(0);
1 by brian
clean slate
54
} /* mi_rsame_pos */