myrg_rlast.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 "myrg_def.h"
  14. /* Read last row with the same key as the previous read. */
  15. int myrg_rlast(MYRG_INFO *info, byte *buf, int inx)
  16. {
  17.   MYRG_TABLE *table;
  18.   MI_INFO *mi;
  19.   int err;
  20.   if (_myrg_init_queue(info,inx, HA_READ_KEY_OR_PREV))
  21.     return my_errno;
  22.   for (table=info->open_tables ; table < info->end_table ; table++)
  23.   {
  24.     if ((err=mi_rlast(table->table,NULL,inx)))
  25.     {
  26.       if (err == HA_ERR_END_OF_FILE)
  27. continue;
  28.       return err;
  29.     }
  30.     /* adding to queue */
  31.     queue_insert(&(info->by_key),(byte *)table);
  32.   }
  33.   /* We have done a read in all tables */
  34.   info->last_used_table=table;
  35.   if (!info->by_key.elements)
  36.     return HA_ERR_END_OF_FILE;
  37.   mi=(info->current_table=(MYRG_TABLE *)queue_top(&(info->by_key)))->table;
  38.   return _myrg_mi_read_record(mi,buf);
  39. }