rkey.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 p} basen av en isam_nyckel */
  14. #include "isamdef.h"
  15. /* Read a record using key */
  16. /* Ordinary search_flag is 0 ; Give error if no record with key */
  17. int nisam_rkey(N_INFO *info, byte *buf, int inx, const byte *key, uint key_len, enum ha_rkey_function search_flag)
  18. {
  19.   uchar *key_buff;
  20.   ISAM_SHARE *share=info->s;
  21.   DBUG_ENTER("nisam_rkey");
  22.   DBUG_PRINT("enter",("base: %lx  inx: %d  search_flag: %d",
  23.       info,inx,search_flag));
  24.   if ((inx = _nisam_check_index(info,inx)) < 0)
  25.     DBUG_RETURN(-1);
  26.   info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  27.   if (key_len >= (share->keyinfo[inx].base.keylength - share->rec_reflength)
  28.       && !(info->s->keyinfo[inx].base.flag & HA_SPACE_PACK_USED))
  29.     key_len=USE_HOLE_KEY;
  30.   key_buff=info->lastkey+info->s->base.max_key_length;
  31.   key_len=_nisam_pack_key(info,(uint) inx,key_buff,(uchar*) key,key_len);
  32.   DBUG_EXECUTE("key",_nisam_print_key(DBUG_FILE,share->keyinfo[inx].seg,
  33.     (uchar*) key););
  34. #ifndef NO_LOCKING
  35.   if (_nisam_readinfo(info,F_RDLCK,1))
  36.     goto err;
  37. #endif
  38.   VOID(_nisam_search(info,info->s->keyinfo+inx,key_buff,key_len,
  39.   nisam_read_vec[search_flag],info->s->state.key_root[inx]));
  40.   if ((*info->read_record)(info,info->lastpos,buf) >= 0)
  41.   {
  42.     info->update|= HA_STATE_AKTIV; /* Record is read */
  43.     DBUG_RETURN(0);
  44.   }
  45.   info->lastpos = NI_POS_ERROR; /* Didn't find key */
  46.   VOID(_nisam_move_key(info->s->keyinfo+inx,info->lastkey,key_buff));
  47.   if (search_flag == HA_READ_AFTER_KEY)
  48.     info->update|=HA_STATE_NEXT_FOUND; /* Previous gives last row */
  49. err:
  50.   DBUG_RETURN(-1);
  51. } /* nisam_rkey */