myrg_rkey.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

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 record based on a key */
  14. /*
  15.  *    HA_READ_KEY_EXACT   => SEARCH_BIGGER
  16.  *    HA_READ_KEY_OR_NEXT => SEARCH_BIGGER
  17.  *    HA_READ_AFTER_KEY   => SEARCH_BIGGER
  18.  *    HA_READ_PREFIX      => SEARCH_BIGGER
  19.  *    HA_READ_KEY_OR_PREV => SEARCH_SMALLER
  20.  *    HA_READ_BEFORE_KEY  => SEARCH_SMALLER
  21.  *    HA_READ_PREFIX_LAST => SEARCH_SMALLER
  22.  */
  23. #include "myrg_def.h"
  24. /* todo: we could store some additional info to speedup lookups:
  25.          column (key, keyseg) can be constant per table
  26.          it can also be increasing (table1.val > table2.val > ...),
  27.          or decreasing, <=, >=, etc.
  28.                                                                    SerG
  29. */
  30. int myrg_rkey(MYRG_INFO *info,byte *buf,int inx, const byte *key,
  31.             uint key_len, enum ha_rkey_function search_flag)
  32. {
  33.   byte *key_buff;
  34.   uint pack_key_length;
  35.   MYRG_TABLE *table;
  36.   MI_INFO *mi;
  37.   int err;
  38.   DBUG_ENTER("myrg_rkey");
  39.   LINT_INIT(key_buff);
  40.   LINT_INIT(pack_key_length);
  41.   if (_myrg_init_queue(info,inx,search_flag))
  42.     DBUG_RETURN(my_errno);
  43.   for (table=info->open_tables ; table != info->end_table ; table++)
  44.   {
  45.     mi=table->table;
  46.     if (table == info->open_tables)
  47.     {
  48.       err=mi_rkey(mi,0,inx,key,key_len,search_flag);
  49.       /* Get the saved packed key and packed key length. */
  50.       key_buff=(byte*) mi->lastkey+mi->s->base.max_key_length;
  51.       pack_key_length=mi->pack_key_length;
  52.     }
  53.     else
  54.     {
  55.       mi->once_flags|= USE_PACKED_KEYS;
  56.       err=mi_rkey(mi,0,inx,key_buff,pack_key_length,search_flag);
  57.     }
  58.     info->last_used_table=table+1;
  59.     if (err)
  60.     {
  61.       if (err == HA_ERR_KEY_NOT_FOUND)
  62. continue;
  63.       DBUG_PRINT("exit", ("err: %d", err));
  64.       DBUG_RETURN(err);
  65.     }
  66.     /* adding to queue */
  67.     queue_insert(&(info->by_key),(byte *)table);
  68.   }
  69.   DBUG_PRINT("info", ("tables with matches: %u", info->by_key.elements));
  70.   if (!info->by_key.elements)
  71.     DBUG_RETURN(HA_ERR_KEY_NOT_FOUND);
  72.   mi=(info->current_table=(MYRG_TABLE *)queue_top(&(info->by_key)))->table;
  73.   mi->once_flags|= RRND_PRESERVE_LASTINX;
  74.   DBUG_PRINT("info", ("using table no: %d",
  75.                       info->current_table - info->open_tables + 1));
  76.   DBUG_DUMP("result key", (byte*) mi->lastkey, mi->lastkey_length);
  77.   DBUG_RETURN(_myrg_mi_read_record(mi,buf));
  78. }