~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/rename_table.cc

  • Committer: Monty Taylor
  • Date: 2010-12-24 07:15:43 UTC
  • mto: This revision was merged to the branch mainline in revision 2029.
  • Revision ID: mordred@inaugust.com-20101224071543-ab082y5circku6v5
Renamed things prefixed mysql_ or mysqld_

Show diffs side-by-side

added added

removed removed

Lines of Context:
163
163
    return 1; // This can't be skipped
164
164
  }
165
165
 
166
 
  rc= mysql_rename_table(*session, engine, old_identifier, new_identifier);
 
166
  rc= rename_table(*session, engine, old_identifier, new_identifier);
167
167
  if (rc && ! skip_error)
168
168
    return true;
169
169