~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/ha_commands.cc

  • Committer: Monty Taylor
  • Date: 2010-03-11 19:38:04 UTC
  • mto: This revision was merged to the branch mainline in revision 1348.
  • Revision ID: mordred@inaugust.com-20100311193804-imfslpvq9dy02l6o
Cleaned up merge errors.

Show diffs side-by-side

added added

removed removed

Lines of Context:
102
102
  add_error_message(HA_ERR_AUTOINC_ERANGE,         ER(ER_WARN_DATA_OUT_OF_RANGE));
103
103
}
104
104
 
105
 
int ha_end()
106
 
{
107
 
  int error= 0;
108
 
 
109
 
  /*
110
 
    This should be eventualy based  on the graceful shutdown flag.
111
 
    So if flag is equal to HA_PANIC_CLOSE, the deallocate
112
 
    the errors.
113
 
  */
114
 
  if (ha_finish_errors())
115
 
    error= 1;
116
 
 
117
 
  return error;
118
 
}
119
 
 
120
105
} /* namespace drizzled */