~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

Fix name conventions for rename table

Show diffs side-by-side

added added

removed removed

Lines of Context:
273
273
                            HA_CREATE_INFO *create_info,
274
274
                            drizzled::message::Table* proto)= 0;
275
275
 
276
 
  virtual int renameTableImplementation(Session* session,
277
 
                                        const char *from, const char *to);
 
276
  virtual int doRenameTable(Session* session,
 
277
                            const char *from, const char *to);
278
278
 
279
279
  virtual int deleteTableImplementation(Session* session,
280
280
                                        const std::string table_path);
285
285
  {
286
286
    setTransactionReadWrite(session);
287
287
 
288
 
    return renameTableImplementation(session, from, to);
 
288
    return doRenameTable(session, from, to);
289
289
  }
290
290
 
291
291
  int doDeleteTable(Session* session, const std::string table_path)