From 14c5bdbcbcddda9aea14725259246f27f635e48f Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 28 Oct 2002 23:24:32 +0100 Subject: fixed "huge number of packed rows in MyISAM" bug in 4.0 tree --- myisam/mi_open.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'myisam/mi_open.c') diff --git a/myisam/mi_open.c b/myisam/mi_open.c index e06726fcaaa..aeacf81d90a 100644 --- a/myisam/mi_open.c +++ b/myisam/mi_open.c @@ -569,7 +569,8 @@ byte *mi_alloc_rec_buff(MI_INFO *info, ulong length, byte **buf) /* to simplify initial init of info->rec_buf in mi_open and mi_extra */ if (length == (ulong) -1) - length= max(info->s->base.pack_reclength,info->s->base.max_key_length); + length= max(info->s->base.pack_reclength+info->s->base.pack_bits, + info->s->base.max_key_length); extra= ((info->s->options & HA_OPTION_PACK_RECORD) ? ALIGN_SIZE(MI_MAX_DYN_BLOCK_HEADER)+MI_SPLIT_LENGTH+ -- cgit v1.2.1