home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / myisammrg / myrg_queue.c < prev    next >
C/C++ Source or Header  |  2000-09-21  |  2KB  |  58 lines

  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.  
  17. /* Read record based on a key */
  18.  
  19. #include "mymrgdef.h"
  20.  
  21. static int queue_key_cmp(void *keyseg, byte *a, byte *b)
  22. {
  23.   MI_INFO *aa=((MYRG_TABLE *)a)->table;
  24.   MI_INFO *bb=((MYRG_TABLE *)b)->table;
  25.   uint not_used;
  26.   int ret= _mi_key_cmp((MI_KEYSEG *)keyseg, aa->lastkey, bb->lastkey,
  27.                USE_WHOLE_KEY, SEARCH_FIND, ¬_used);
  28.   return ret < 0 ? -1 : ret > 0 ? 1 : 0;
  29. } /* queue_key_cmp */
  30.  
  31.  
  32. int _myrg_init_queue(MYRG_INFO *info,int inx,enum ha_rkey_function search_flag)
  33. {
  34.   int error=0;
  35.   QUEUE *q= &(info->by_key);
  36.  
  37.   if (inx < (int) info->keys)
  38.   {
  39.     if (!is_queue_inited(q))
  40.     {
  41.       if (init_queue(q,info->tables, 0,
  42.              (myisam_readnext_vec[search_flag] == SEARCH_SMALLER),
  43.              queue_key_cmp,
  44.              info->open_tables->table->s->keyinfo[inx].seg))
  45.     error=my_errno;
  46.     }
  47.     else
  48.     {
  49.       if (reinit_queue(q,info->tables, 0,
  50.                (myisam_readnext_vec[search_flag] == SEARCH_SMALLER),
  51.                queue_key_cmp,
  52.                info->open_tables->table->s->keyinfo[inx].seg))
  53.     error=my_errno;
  54.     }
  55.   }
  56.   return error;
  57. }
  58.