~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/ha_heap.cc

Fix name conventions for rename table

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
                        bool internal_table,
74
74
                        HP_SHARE **internal_share);
75
75
 
76
 
  int renameTableImplementation(Session*, const char * from, const char * to);
 
76
  int doRenameTable(Session*, const char * from, const char * to);
77
77
 
78
78
  int deleteTableImplementation(Session *, const string table_path);
79
79
};
612
612
}
613
613
 
614
614
 
615
 
int HeapEngine::renameTableImplementation(Session*,
616
 
                                          const char *from, const char *to)
 
615
int HeapEngine::doRenameTable(Session*,
 
616
                              const char *from, const char *to)
617
617
{
618
618
  return heap_rename(from,to);
619
619
}