hp_rsame.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. /* re-read current record */
  14. #include "heapdef.h"
  15. /* If inx != -1 the new record is read according to index
  16.    (for next/prev). Record must in this case point to last record
  17.    Returncodes:
  18.    0 = Ok.
  19.    HA_ERR_RECORD_DELETED = Record was removed
  20.    HA_ERR_KEY_NOT_FOUND = Record not found with key
  21. */
  22. int heap_rsame(register HP_INFO *info, byte *record, int inx)
  23. {
  24.   HP_SHARE *share=info->s;
  25.   DBUG_ENTER("heap_rsame");
  26.   test_active(info);
  27.   if (info->current_ptr[share->reclength])
  28.   {
  29.     if (inx < -1 || inx >= (int) share->keys)
  30.     {
  31.       DBUG_RETURN(my_errno=HA_ERR_WRONG_INDEX);
  32.     }
  33.     else if (inx != -1)
  34.     {
  35.       info->lastinx=inx;
  36.       hp_make_key(share->keydef + inx, info->lastkey, record);
  37.       if (!hp_search(info, share->keydef + inx, info->lastkey, 3))
  38.       {
  39. info->update=0;
  40. DBUG_RETURN(my_errno);
  41.       }
  42.     }
  43.     memcpy(record,info->current_ptr,(size_t) share->reclength);
  44.     DBUG_RETURN(0);
  45.   }
  46.   info->update=0;
  47.   DBUG_RETURN(my_errno=HA_ERR_RECORD_DELETED);
  48. }