~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_info.c

  • Committer: Brian Aker
  • Date: 2008-07-18 20:10:26 UTC
  • mfrom: (51.3.29 remove-dbug)
  • Revision ID: brian@tangent.org-20080718201026-tto5golt0xhwqe4a
Merging in Jay's final patch on dbug.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
int heap_info(register HP_INFO *info, register HEAPINFO *x, int flag )
31
31
{
32
 
  DBUG_ENTER("heap_info");
33
32
  x->records         = info->s->records;
34
33
  x->deleted         = info->s->deleted;
35
34
  x->reclength       = info->s->reclength;
39
38
  x->errkey          = info->errkey;
40
39
  if (flag & HA_STATUS_AUTO)
41
40
    x->auto_increment= info->s->auto_increment + 1;
42
 
  DBUG_RETURN(0);
 
41
  return(0);
43
42
} /* heap_info */