~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_changed.c

  • Committer: Monty Taylor
  • Date: 2008-07-16 19:10:24 UTC
  • mfrom: (51.1.127 remove-dbug)
  • mto: This revision was merged to the branch mainline in revision 176.
  • Revision ID: monty@inaugust.com-20080716191024-prjgoh7fbri7rx26
MergedĀ fromĀ remove-dbug.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
int mi_is_changed(MI_INFO *info)
23
23
{
24
24
  int result;
25
 
  DBUG_ENTER("mi_is_changed");
26
25
  if (fast_mi_readinfo(info))
27
 
    DBUG_RETURN(-1);
 
26
    return(-1);
28
27
  VOID(_mi_writeinfo(info,0));
29
28
  result=(int) info->data_changed;
30
29
  info->data_changed=0;
31
 
  DBUG_PRINT("exit",("result: %d",result));
32
 
  DBUG_RETURN(result);
 
30
  return(result);
33
31
}