rrnd.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. /* Read a record with random-access. The position to the record must
  17.    get by N_INFO. The next record can be read with pos= -1 */
  18. #include "isamdef.h"
  19. /*
  20.    If filepos == NI_POS_ERROR, read next
  21.    Returns:
  22.    0 = Ok.
  23.    1 = Row was deleted
  24.   -1 = EOF (check errno to verify)
  25. */
  26. int nisam_rrnd(N_INFO *info, byte *buf, register ulong filepos)
  27. {
  28.   int skipp_deleted_blocks;
  29.   DBUG_ENTER("nisam_rrnd");
  30.   skipp_deleted_blocks=0;
  31.   if (filepos == NI_POS_ERROR)
  32.   {
  33.     skipp_deleted_blocks=1;
  34.     if (info->lastpos == NI_POS_ERROR) /* First read ? */
  35.       filepos= info->s->pack.header_length; /* Read first record */
  36.     else
  37.       filepos= info->nextpos;
  38.   }
  39.   info->lastinx= -1; /* Can't forward or backward */
  40.   /* Init all but update-flag */
  41.   info->update&= (HA_STATE_CHANGED | HA_STATE_ROW_CHANGED);
  42.   if (info->opt_flag & WRITE_CACHE_USED && flush_io_cache(&info->rec_cache))
  43.     DBUG_RETURN(my_errno);
  44.   DBUG_RETURN ((*info->s->read_rnd)(info,buf,filepos,skipp_deleted_blocks));
  45. }