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 nisam_rsame but supply a position */
  15. #include "isamdef.h"
  16. /*
  17. ** If inx >= 0 update index pointer
  18. ** Returns one of the following values:
  19. **  0 = Ok.
  20. **  1 = Record deleted
  21. ** -1 = EOF (or something similar. More information in my_errno)
  22. */
  23. int nisam_rsame_with_pos(N_INFO *info, byte *record, int inx, ulong filepos)
  24. {
  25.   DBUG_ENTER("nisam_rsame_with_pos");
  26.   if (inx >= (int) info->s->state.keys || inx < -1)
  27.   {
  28.     my_errno=HA_ERR_WRONG_INDEX;
  29.     DBUG_RETURN(-1);
  30.   }
  31.   info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  32.   if ((*info->s->read_rnd)(info,record,filepos,0))
  33.   {
  34.     if (my_errno == HA_ERR_RECORD_DELETED)
  35.     {
  36.       my_errno=HA_ERR_KEY_NOT_FOUND;
  37.       DBUG_RETURN(1);
  38.     }
  39.     DBUG_RETURN(-1);
  40.   }
  41.   info->lastpos=filepos;
  42.   info->lastinx=inx;
  43.   if (inx >= 0)
  44.   {
  45.     VOID(_nisam_make_key(info,(uint) inx,info->lastkey,record,info->lastpos));
  46.     info->update|=HA_STATE_KEY_CHANGED; /* Don't use indexposition */
  47.   }
  48.   DBUG_RETURN(0);
  49. } /* nisam_rsame_pos */