~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/ha_heap.cc

  • Committer: Brian Aker
  • Date: 2008-11-21 23:53:09 UTC
  • mfrom: (590.1.8 drizzle-nofrm)
  • Revision ID: brian@tangent.org-20081121235309-77pu95n2pboadtos
Merge in Stewart's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
569
569
 
570
570
int ha_heap::delete_table(const char *name)
571
571
{
572
 
  int error= heap_delete_table(name);
573
 
  return error == ENOENT ? 0 : error;
 
572
  return heap_delete_table(name);
574
573
}
575
574
 
576
575