~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_info.c

  • Committer: Jay Pipes
  • Date: 2008-07-16 16:14:22 UTC
  • mto: This revision was merged to the branch mainline in revision 182.
  • Revision ID: jay@mysql.com-20080716161422-fy1bl8o5q7m8kglq
Removed all DBUG symbols from heap storage engine

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 */