~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-24 23:55:45 UTC
  • mto: (1273.13.101 build)
  • mto: This revision was merged to the branch mainline in revision 1309.
  • Revision ID: brian@gaz-20100224235545-amlr2y9rfv6ctl2r
Move Alter schema to SE interface.

Show diffs side-by-side

added added

removed removed

Lines of Context:
348
348
  static bool doesSchemaExist(const std::string &schema_name);
349
349
  static const CHARSET_INFO *getSchemaCollation(const std::string &schema_name);
350
350
  static bool createSchema(const drizzled::message::Schema &schema_message);
 
351
  static bool alterSchema(const drizzled::message::Schema &schema_message);
351
352
 
352
353
  // @note make private/protected
353
354
  virtual void doGetSchemaNames(std::set<std::string>& set_of_names)
364
365
  virtual bool doCreateSchema(const drizzled::message::Schema &schema_message)
365
366
  { (void)schema_message; return false; }
366
367
 
 
368
  virtual bool doAlterSchema(const drizzled::message::Schema &schema_message)
 
369
  { (void)schema_message; return false; }
 
370
 
367
371
  static inline const std::string &resolveName(const StorageEngine *engine)
368
372
  {
369
373
    return engine == NULL ? UNKNOWN_STRING : engine->getName();