~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.cc

  • Committer: Brian Aker
  • Date: 2010-03-25 01:22:58 UTC
  • mfrom: (1395.1.4 build)
  • Revision ID: brian@gaz-20100325012258-cg51yq2yiuldvgxw
Merge of ALTER TABLE code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1398
1398
 
1399
1399
int MyisamEngine::doRenameTable(Session &session, TableIdentifier &from, TableIdentifier &to)
1400
1400
{
1401
 
  session.rename(from, to);
 
1401
  session.renameTableMessage(from, to);
1402
1402
 
1403
1403
  return mi_rename(from.getPath().c_str(), to.getPath().c_str());
1404
1404
}