mi_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. #include "myisamdef.h"
  14. /*
  15. ** Find current row with read on position or read on key
  16. ** If inx >= 0 find record using key
  17. ** Return values:
  18. ** 0 = Ok.
  19. ** HA_ERR_KEY_NOT_FOUND = Row is deleted
  20. ** HA_ERR_END_OF_FILE   = End of file
  21. */
  22. int mi_rsame(MI_INFO *info, byte *record, int inx)
  23. {
  24.   DBUG_ENTER("mi_rsame");
  25.   if (inx != -1 && ! (((ulonglong) 1 << inx) & info->s->state.key_map))
  26.   {
  27.     DBUG_RETURN(my_errno=HA_ERR_WRONG_INDEX);
  28.   }
  29.   if (info->lastpos == HA_OFFSET_ERROR || info->update & HA_STATE_DELETED)
  30.   {
  31.     DBUG_RETURN(my_errno=HA_ERR_KEY_NOT_FOUND); /* No current record */
  32.   }
  33.   info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  34.   /* Read row from data file */
  35.   if (fast_mi_readinfo(info))
  36.     DBUG_RETURN(my_errno);
  37.   if (inx >= 0)
  38.   {
  39.     info->lastinx=inx;
  40.     info->lastkey_length=_mi_make_key(info,(uint) inx,info->lastkey,record,
  41.       info->lastpos);
  42.     if (info->s->concurrent_insert)
  43.       rw_rdlock(&info->s->key_root_lock[inx]);
  44.     VOID(_mi_search(info,info->s->keyinfo+inx,info->lastkey, USE_WHOLE_KEY,
  45.     SEARCH_SAME,
  46.     info->s->state.key_root[inx]));
  47.     if (info->s->concurrent_insert)
  48.       rw_unlock(&info->s->key_root_lock[inx]);
  49.   }
  50.   if (!(*info->read_record)(info,info->lastpos,record))
  51.     DBUG_RETURN(0);
  52.   if (my_errno == HA_ERR_RECORD_DELETED)
  53.     my_errno=HA_ERR_KEY_NOT_FOUND;
  54.   DBUG_RETURN(my_errno);
  55. } /* mi_rsame */