summaryrefslogtreecommitdiff
path: root/storage/heap
diff options
context:
space:
mode:
authormonty@narttu.mysql.fi <>2006-11-30 22:38:12 +0200
committermonty@narttu.mysql.fi <>2006-11-30 22:38:12 +0200
commit430d215c58ba78a018ff1299cb537d66f41deaae (patch)
treeed9e2b22ed77e3ea701164ea1905e9d4c8da0cf5 /storage/heap
parent0a673596a288505374b6232d4e17f08934829767 (diff)
parent601e6f4b2a78921304bc1d779991c615ee229f89 (diff)
downloadmariadb-git-430d215c58ba78a018ff1299cb537d66f41deaae.tar.gz
Merge mysql.com:/home/my/mysql-5.0
into mysql.com:/home/my/mysql-5.1
Diffstat (limited to 'storage/heap')
-rw-r--r--storage/heap/hp_clear.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/storage/heap/hp_clear.c b/storage/heap/hp_clear.c
index 596d71ebe9c..b491f8eba15 100644
--- a/storage/heap/hp_clear.c
+++ b/storage/heap/hp_clear.c
@@ -36,7 +36,8 @@ void hp_clear(HP_SHARE *info)
(byte*) 0));
info->block.levels=0;
hp_clear_keys(info);
- info->records=info->deleted=info->data_length=0;
+ info->records= info->deleted= 0;
+ info->data_length= 0;
info->blength=1;
info->changed=0;
info->del_link=0;