hp_update.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. /* Update current record in heap-database */
  14. #include "heapdef.h"
  15. int heap_update(HP_INFO *info, const byte *old, const byte *heap_new)
  16. {
  17.   HP_KEYDEF *keydef, *end, *p_lastinx;
  18.   byte *pos;
  19.   bool auto_key_changed= 0;
  20.   HP_SHARE *share= info->s;
  21.   DBUG_ENTER("heap_update");
  22.   test_active(info);
  23.   pos=info->current_ptr;
  24.   if (info->opt_flag & READ_CHECK_USED && hp_rectest(info,old))
  25.     DBUG_RETURN(my_errno); /* Record changed */
  26.   if (--(share->records) < share->blength >> 1) share->blength>>= 1;
  27.   share->changed=1;
  28.   p_lastinx= share->keydef + info->lastinx;
  29.   for (keydef= share->keydef, end= keydef + share->keys; keydef < end; keydef++)
  30.   {
  31.     if (hp_rec_key_cmp(keydef, old, heap_new))
  32.     {
  33.       if ((*keydef->delete_key)(info, keydef, old, pos, keydef == p_lastinx) ||
  34.           (*keydef->write_key)(info, keydef, heap_new, pos))
  35.         goto err;
  36.       if (share->auto_key == (uint) (keydef - share->keydef + 1))
  37.         auto_key_changed= 1;
  38.     }
  39.   }
  40.   memcpy(pos,heap_new,(size_t) share->reclength);
  41.   if (++(share->records) == share->blength) share->blength+= share->blength;
  42. #if !defined(DBUG_OFF) && defined(EXTRA_HEAP_DEBUG)
  43.   DBUG_EXECUTE("check_heap",heap_check_heap(info, 0););
  44. #endif
  45.   if (auto_key_changed)
  46.     heap_update_auto_increment(info, heap_new);
  47.   DBUG_RETURN(0);
  48.  err:
  49.   if (my_errno == HA_ERR_FOUND_DUPP_KEY)
  50.   {
  51.     info->errkey = keydef - share->keydef;
  52.     if (keydef->algorithm == HA_KEY_ALG_BTREE)
  53.     {
  54.       /* we don't need to delete non-inserted key from rb-tree */
  55.       if ((*keydef->write_key)(info, keydef, old, pos))
  56.       {
  57.         if (++(share->records) == share->blength)
  58.   share->blength+= share->blength;
  59.         DBUG_RETURN(my_errno);
  60.       }
  61.       keydef--;
  62.     }
  63.     while (keydef >= share->keydef)
  64.     {
  65.       if (hp_rec_key_cmp(keydef, old, heap_new))
  66.       {
  67. if ((*keydef->delete_key)(info, keydef, heap_new, pos, 0) ||
  68.     (*keydef->write_key)(info, keydef, old, pos))
  69.   break;
  70.       }
  71.       keydef--;
  72.     }
  73.   }
  74.   if (++(share->records) == share->blength)
  75.     share->blength+= share->blength;
  76.   DBUG_RETURN(my_errno);
  77. } /* heap_update */