rsame.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. /* L{ser nuvarande record med direktl{sning */
  14. /* Klarar b}de poster l{sta med nyckel och rrnd. */
  15. #include "isamdef.h"
  16. /* Funktionen ger som resultat:
  17.    0 = Ok.
  18.    1 = Posten borttagen
  19.   -1 = EOF (eller motsvarande: se errno) */
  20. int nisam_rsame(N_INFO *info, byte *record, int inx)
  21. /* If inx >= 0 find record using key */
  22. {
  23.   DBUG_ENTER("nisam_rsame");
  24.   if (inx >= (int) info->s->state.keys || inx < -1)
  25.   {
  26.     my_errno=HA_ERR_WRONG_INDEX;
  27.     DBUG_RETURN(-1);
  28.   }
  29.   if (info->lastpos == NI_POS_ERROR || info->update & HA_STATE_DELETED)
  30.   {
  31.     my_errno=HA_ERR_KEY_NOT_FOUND; /* No current record */
  32.     DBUG_RETURN(-1);
  33.   }
  34.   info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  35.   /* L{s record fr}n datafilen */
  36. #ifndef NO_LOCKING
  37.   if (_nisam_readinfo(info,F_RDLCK,1))
  38.     DBUG_RETURN(-1);
  39. #endif
  40.   if (inx >= 0)
  41.   {
  42.     info->lastinx=inx;
  43.     VOID(_nisam_make_key(info,(uint) inx,info->lastkey,record,info->lastpos));
  44.     VOID(_nisam_search(info,info->s->keyinfo+inx,info->lastkey,0,SEARCH_SAME,
  45.     info->s->state.key_root[inx]));
  46.   }
  47.   if ((*info->read_record)(info,info->lastpos,record) == 0)
  48.     DBUG_RETURN(0);
  49.   if (my_errno == HA_ERR_RECORD_DELETED)
  50.   {
  51.     my_errno=HA_ERR_KEY_NOT_FOUND;
  52.     DBUG_RETURN(1);
  53.   }
  54.   DBUG_RETURN(-1);
  55. } /* nisam_rsame */