mi_rsame.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult 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; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. #include "myisamdef.h"
  17. /*
  18. ** Find current row with read on position or read on key
  19. ** If inx >= 0 find record using key
  20. ** Return values:
  21. ** 0 = Ok.
  22. ** HA_ERR_KEY_NOT_FOUND = Row is deleted
  23. ** HA_ERR_END_OF_FILE   = End of file
  24. */
  25. int mi_rsame(MI_INFO *info, byte *record, int inx)
  26. {
  27.   DBUG_ENTER("mi_rsame");
  28.   if (inx != -1 && ! (((ulonglong) 1 << inx) & info->s->state.key_map))
  29.   {
  30.     DBUG_RETURN(my_errno=HA_ERR_WRONG_INDEX);
  31.   }
  32.   if (info->lastpos == HA_OFFSET_ERROR || info->update & HA_STATE_DELETED)
  33.   {
  34.     DBUG_RETURN(my_errno=HA_ERR_KEY_NOT_FOUND); /* No current record */
  35.   }
  36.   info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  37.   /* Read row from data file */
  38.   if (_mi_readinfo(info,F_RDLCK,1))
  39.     DBUG_RETURN(my_errno);
  40.   if (inx >= 0)
  41.   {
  42.     info->lastinx=inx;
  43.     info->lastkey_length=_mi_make_key(info,(uint) inx,info->lastkey,record,
  44.       info->lastpos);
  45.     if (info->s->concurrent_insert)
  46.       rw_rdlock(&info->s->key_root_lock[inx]);
  47.     VOID(_mi_search(info,info->s->keyinfo+inx,info->lastkey,0,SEARCH_SAME,
  48.     info->s->state.key_root[inx]));
  49.     if (info->s->concurrent_insert)
  50.       rw_unlock(&info->s->key_root_lock[inx]);
  51.   }
  52.   if (!(*info->read_record)(info,info->lastpos,record))
  53.     DBUG_RETURN(0);
  54.   if (my_errno == HA_ERR_RECORD_DELETED)
  55.     my_errno=HA_ERR_KEY_NOT_FOUND;
  56.   DBUG_RETURN(my_errno);
  57. } /* mi_rsame */