~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/ha_heap.cc

  • Committer: Stewart Smith
  • Date: 2009-06-03 02:42:22 UTC
  • mto: This revision was merged to the branch mainline in revision 1053.
  • Revision ID: stewart@flamingspork.com-20090603024222-h614blveuihhdpot
move handler::rename_table to StorageEngine

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
                        bool internal_table,
69
69
                        HP_SHARE **internal_share);
70
70
 
 
71
  int rename_table(Session*, const char * from, const char * to);
 
72
 
71
73
  int delete_table(Session *, const string table_path);
72
74
};
73
75
 
607
609
}
608
610
 
609
611
 
610
 
int ha_heap::rename_table(const char * from, const char * to)
 
612
int HeapEngine::rename_table(Session*, const char * from, const char * to)
611
613
{
612
614
  return heap_rename(from,to);
613
615
}