~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Brian Aker
  • Date: 2010-02-19 23:42:02 UTC
  • mto: (1273.19.18 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1309.
  • Revision ID: brian@gir.tangent.org-20100219234202-boogaw8j3folts51
Basic engine with test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
294
294
  virtual int doRenameTable(Session* session,
295
295
                            const char *from, const char *to);
296
296
 
297
 
 
298
297
public:
299
298
 
300
299
  int renameTable(Session *session, const char *from, const char *to) 
341
340
  // @note All schema methods defined here
342
341
  static void getSchemaNames(std::set<std::string>& set_of_names);
343
342
  static bool getSchemaDefinition(const std::string &schema_name, message::Schema &proto);
 
343
  // @note make private/protected
 
344
  virtual void doGetSchemaNames(std::set<std::string>& set_of_names);
 
345
 
 
346
 
344
347
 
345
348
 
346
349
  static inline const std::string &resolveName(const StorageEngine *engine)