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