~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.cc

Fix name conventions for rename table

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
                    HA_CREATE_INFO *ha_create_info,
78
78
                    drizzled::message::Table*);
79
79
 
80
 
  int renameTableImplementation(Session*, const char *from, const char *to);
 
80
  int doRenameTable(Session*, const char *from, const char *to);
81
81
 
82
82
  int deleteTableImplementation(Session*, const string table_name);
83
83
};
1349
1349
}
1350
1350
 
1351
1351
 
1352
 
int MyisamEngine::renameTableImplementation(Session*,
1353
 
                                            const char *from, const char *to)
 
1352
int MyisamEngine::doRenameTable(Session*,
 
1353
                                const char *from, const char *to)
1354
1354
{
1355
1355
  return mi_rename(from,to);
1356
1356
}