~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.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:
85
85
  int create_table(Session *, const char *table_name,
86
86
                   Table *table_arg, HA_CREATE_INFO *ha_create_info);
87
87
 
 
88
  int rename_table(Session*, const char * from, const char * to);
88
89
};
89
90
 
90
91
// collect errors printed by mi_check routines
1687
1688
}
1688
1689
 
1689
1690
 
1690
 
int ha_myisam::rename_table(const char * from, const char * to)
 
1691
int MyisamEngine::rename_table(Session*, const char * from, const char * to)
1691
1692
{
1692
1693
  return mi_rename(from,to);
1693
1694
}