diff options
Diffstat (limited to 'heap/hp_info.c')
-rw-r--r-- | heap/hp_info.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/heap/hp_info.c b/heap/hp_info.c index e10d140e1f6..2e56d030234 100644 --- a/heap/hp_info.c +++ b/heap/hp_info.c @@ -47,13 +47,13 @@ ulong heap_position_old(HP_INFO *info) int heap_info(reg1 HP_INFO *info,reg2 HEAPINFO *x, int flag ) { DBUG_ENTER("heap_info"); - x->records = info->s->records; - x->deleted = info->s->deleted; - x->reclength = info->s->reclength; - x->data_length = info->s->data_length; - x->index_length= info->s->index_length; - x->max_records = info->s->max_records; - x->errkey = info->errkey; + x->records = info->s->records; + x->deleted = info->s->deleted; + x->reclength = info->s->reclength; + x->data_length = info->s->data_length; + x->index_length = info->s->index_length; + x->max_records = info->s->max_records; + x->errkey = info->errkey; if (flag & HA_STATUS_AUTO) x->auto_increment= info->s->auto_increment + 1; DBUG_RETURN(0); |