summaryrefslogtreecommitdiff
path: root/heap/hp_info.c
diff options
context:
space:
mode:
Diffstat (limited to 'heap/hp_info.c')
-rw-r--r--heap/hp_info.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/heap/hp_info.c b/heap/hp_info.c
index e10d140e1f6..a403ff9bb45 100644
--- a/heap/hp_info.c
+++ b/heap/hp_info.c
@@ -47,13 +47,14 @@ 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;
+ x->implicit_emptied= info->implicit_emptied;
if (flag & HA_STATUS_AUTO)
x->auto_increment= info->s->auto_increment + 1;
DBUG_RETURN(0);