myrg_queue.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. static int queue_key_cmp(void *keyseg, byte *a, byte *b)
  15. {
  16.   MI_INFO *aa=((MYRG_TABLE *)a)->table;
  17.   MI_INFO *bb=((MYRG_TABLE *)b)->table;
  18.   uint not_used[2];
  19.   int ret= ha_key_cmp((HA_KEYSEG *)keyseg, aa->lastkey, bb->lastkey,
  20.        USE_WHOLE_KEY, SEARCH_FIND, not_used);
  21.   return ret < 0 ? -1 : ret > 0 ? 1 : 0;
  22. } /* queue_key_cmp */
  23. int _myrg_init_queue(MYRG_INFO *info,int inx,enum ha_rkey_function search_flag)
  24. {
  25.   int error=0;
  26.   QUEUE *q= &(info->by_key);
  27.   if (inx < (int) info->keys)
  28.   {
  29.     if (!is_queue_inited(q))
  30.     {
  31.       if (init_queue(q,info->tables, 0,
  32.      (myisam_readnext_vec[search_flag] == SEARCH_SMALLER),
  33.      queue_key_cmp,
  34.      info->open_tables->table->s->keyinfo[inx].seg))
  35. error=my_errno;
  36.     }
  37.     else
  38.     {
  39.       if (reinit_queue(q,info->tables, 0,
  40.        (myisam_readnext_vec[search_flag] == SEARCH_SMALLER),
  41.        queue_key_cmp,
  42.        info->open_tables->table->s->keyinfo[inx].seg))
  43. error=my_errno;
  44.     }
  45.   }
  46.   return error;
  47. }
  48. int _myrg_mi_read_record(MI_INFO *info, byte *buf)
  49. {
  50.   if (!(*info->read_record)(info,info->lastpos,buf))
  51.   {
  52.     info->update|= HA_STATE_AKTIV; /* Record is read */
  53.     return 0;
  54.   }
  55.   return my_errno;
  56. }