diff options
author | svoj@june.mysql.com <> | 2007-07-05 11:45:58 +0500 |
---|---|---|
committer | svoj@june.mysql.com <> | 2007-07-05 11:45:58 +0500 |
commit | 9b5dace07193b8d6e82e1f0b86bfa4a5ee27d865 (patch) | |
tree | 659bee7e1f6b53b1167ffc90c2ae7b96b761c799 /mysys | |
parent | 05390802966f65553302f0c18c1eab978d0cfd6c (diff) | |
parent | c2120c40eea8a66874c1e9b4e38598c3faaebf19 (diff) | |
download | mariadb-git-9b5dace07193b8d6e82e1f0b86bfa4a5ee27d865.tar.gz |
Merge mysql.com:/home/svoj/devel/mysql/BUG27564/mysql-4.1-engines
into mysql.com:/home/svoj/devel/mysql/BUG27564/mysql-5.0-engines
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/hash.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mysys/hash.c b/mysys/hash.c index 0c949b3a0d8..9e8404248eb 100644 --- a/mysys/hash.c +++ b/mysys/hash.c @@ -570,6 +570,25 @@ my_bool hash_update(HASH *hash,byte *record,byte *old_key,uint old_key_length) previous->next=pos->next; /* unlink pos */ /* Move data to correct position */ + if (new_index == empty) + { + /* + At this point record is unlinked from the old chain, thus it holds + random position. By the chance this position is equal to position + for the first element in the new chain. That means updated record + is the only record in the new chain. + */ + if (empty != idx) + { + /* + Record was moved while unlinking it from the old chain. + Copy data to a new position. + */ + data[empty]= org_link; + } + data[empty].next= NO_RECORD; + DBUG_RETURN(0); + } pos=data+new_index; new_pos_index=hash_rec_mask(hash,pos,blength,records); if (new_index != new_pos_index) |