mariadb/heap/hp_update.c

72 lines
2.2 KiB
C
Raw Normal View History

2000-07-31 21:29:14 +02:00
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
2000-07-31 21:29:14 +02:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
2000-07-31 21:29:14 +02:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2000-07-31 21:29:14 +02:00
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
/* Update current record in heap-database */
#include "heapdef.h"
2001-09-12 22:53:31 +02:00
int heap_update(HP_INFO *info, const byte *old, const byte *heap_new)
2000-07-31 21:29:14 +02:00
{
uint key;
byte *pos;
HP_SHARE *share=info->s;
DBUG_ENTER("heap_update");
test_active(info);
pos=info->current_ptr;
if (info->opt_flag & READ_CHECK_USED && _hp_rectest(info,old))
DBUG_RETURN(my_errno); /* Record changed */
if (--(share->records) < share->blength >> 1) share->blength>>= 1;
share->changed=1;
for (key=0 ; key < share->keys ; key++)
{
2001-09-12 22:53:31 +02:00
if (_hp_rec_key_cmp(share->keydef+key,old,heap_new))
2000-07-31 21:29:14 +02:00
{
if (_hp_delete_key(info,share->keydef+key,old,pos,key ==
(uint) info->lastinx) ||
2001-09-12 22:53:31 +02:00
_hp_write_key(share,share->keydef+key,heap_new,pos))
2000-07-31 21:29:14 +02:00
goto err;
}
}
2001-09-12 22:53:31 +02:00
memcpy(pos,heap_new,(size_t) share->reclength);
2000-07-31 21:29:14 +02:00
if (++(share->records) == share->blength) share->blength+= share->blength;
#if !defined(DBUG_OFF) && defined(EXTRA_HEAP_DEBUG)
DBUG_EXECUTE("check_heap",heap_check_heap(info, 0););
#endif
2000-07-31 21:29:14 +02:00
DBUG_RETURN(0);
err:
if (my_errno == HA_ERR_FOUND_DUPP_KEY)
{
info->errkey=key;
do
{
2001-09-12 22:53:31 +02:00
if (_hp_rec_key_cmp(share->keydef+key,old,heap_new))
2000-07-31 21:29:14 +02:00
{
2001-09-12 22:53:31 +02:00
if (_hp_delete_key(info,share->keydef+key,heap_new,pos,0) ||
2000-07-31 21:29:14 +02:00
_hp_write_key(share,share->keydef+key,old,pos))
break;
}
} while (key-- > 0);
}
if (++(share->records) == share->blength) share->blength+= share->blength;
DBUG_RETURN(my_errno);
} /* heap_update */