~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.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:
714
714
  void **ha_data(Session *) const;
715
715
  Session *ha_session(void) const;
716
716
 
717
 
  /**
718
 
    Default rename_table() and delete_table() rename/delete files with a
719
 
    given name and extensions from bas_ext().
720
 
 
721
 
    These methods can be overridden, but their default implementation
722
 
    provide useful functionality.
723
 
  */
724
 
  virtual int rename_table(const char *from, const char *to);
725
 
 
726
717
private:
727
718
  /* Private helpers */
728
719
  inline void mark_trx_read_write();