~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • 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:
260
260
 
261
261
  virtual int create_table(Session *session, const char *name, Table *table_arg,
262
262
                           HA_CREATE_INFO *create_info)=0;
 
263
  /**
 
264
    Default rename_table() and delete_table() rename/delete files with a
 
265
    given name and extensions from bas_ext().
 
266
 
 
267
    These methods can be overridden, but their default implementation
 
268
    provide useful functionality.
 
269
  */
 
270
  virtual int rename_table(Session* session, const char *from, const char *to);
263
271
 
264
272
  virtual int delete_table(Session* session, const std::string table_path);
265
273
};