mi_rsamepos.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* read record through position and fix key-position */
  14. /* As mi_rsame but supply a position */
  15. #include "myisamdef.h"
  16. /*
  17. ** If inx >= 0 update index pointer
  18. ** Returns one of the following values:
  19. **  0 = Ok.
  20. ** HA_ERR_KEY_NOT_FOUND = Row is deleted
  21. ** HA_ERR_END_OF_FILE   = End of file
  22. */
  23. int mi_rsame_with_pos(MI_INFO *info, byte *record, int inx, my_off_t filepos)
  24. {
  25.   DBUG_ENTER("mi_rsame_with_pos");
  26.   if (inx < -1 || ! (((ulonglong) 1 << inx) & info->s->state.key_map))
  27.   {
  28.     DBUG_RETURN(my_errno=HA_ERR_WRONG_INDEX);
  29.   }
  30.   info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  31.   if ((*info->s->read_rnd)(info,record,filepos,0))
  32.   {
  33.     if (my_errno == HA_ERR_RECORD_DELETED)
  34.       my_errno=HA_ERR_KEY_NOT_FOUND;
  35.     DBUG_RETURN(my_errno);
  36.   }
  37.   info->lastpos=filepos;
  38.   info->lastinx=inx;
  39.   if (inx >= 0)
  40.   {
  41.     info->lastkey_length=_mi_make_key(info,(uint) inx,info->lastkey,record,
  42.       info->lastpos);
  43.     info->update|=HA_STATE_KEY_CHANGED; /* Don't use indexposition */
  44.   }
  45.   DBUG_RETURN(0);
  46. } /* mi_rsame_pos */