rnext.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. /* L{ser n{sta post med samma isam-nyckel */
  17. #include "isamdef.h"
  18. /*
  19.    L{ser n{sta post med samma isamnyckel som f|reg}ende l{sning.
  20.    Man kan ha gjort write, update eller delete p} f|reg}ende post.
  21.    OBS! [ven om man {ndrade isamnyckeln p} f|reg}ende post l{ses
  22.    posten i avseende p} f|reg}ende isam-nyckel-l{sning !!
  23. */
  24. int nisam_rnext(N_INFO *info, byte *buf, int inx)
  25. {
  26.   int error,changed;
  27.   uint flag;
  28.   DBUG_ENTER("nisam_rnext");
  29.   if ((inx = _nisam_check_index(info,inx)) < 0)
  30.     DBUG_RETURN(-1);
  31.   flag=SEARCH_BIGGER; /* Read next */
  32.   if (info->lastpos == NI_POS_ERROR && info->update & HA_STATE_PREV_FOUND)
  33.     flag=0; /* Read first */
  34. #ifndef NO_LOCKING
  35.   if (_nisam_readinfo(info,F_RDLCK,1)) DBUG_RETURN(-1);
  36. #endif
  37.   changed=_nisam_test_if_changed(info);
  38.   if (!flag)
  39.     error=_nisam_search_first(info,info->s->keyinfo+inx,
  40.    info->s->state.key_root[inx]);
  41.   else if (!changed)
  42.     error=_nisam_search_next(info,info->s->keyinfo+inx,info->lastkey,flag,
  43.   info->s->state.key_root[inx]);
  44.   else
  45.     error=_nisam_search(info,info->s->keyinfo+inx,info->lastkey,0,flag,
  46.      info->s->state.key_root[inx]);
  47. /* Don't clear if database-changed */
  48.   info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED |
  49.   HA_STATE_BUFF_SAVED);
  50.   info->update|= HA_STATE_NEXT_FOUND;
  51.   if (error && my_errno == HA_ERR_KEY_NOT_FOUND)
  52.     my_errno=HA_ERR_END_OF_FILE;
  53.   if ((*info->read_record)(info,info->lastpos,buf) >=0)
  54.   {
  55.     info->update|= HA_STATE_AKTIV; /* Record is read */
  56.     DBUG_RETURN(0);
  57.   }
  58.   DBUG_RETURN(-1);
  59. } /* nisam_rnext */