~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Brian Aker
  • Date: 2010-03-04 08:33:14 UTC
  • mfrom: (1320.1.12 build)
  • Revision ID: brian@gaz-20100304083314-pscg89hdw618s2j5
Merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
359
359
                       TableIdentifier &identifier);
360
360
  static void getTableNames(const std::string& db_name, TableNameList &set_of_names);
361
361
 
 
362
  // Check to see if any SE objects to creation.
 
363
  static bool canCreateTable(drizzled::TableIdentifier &identifier);
 
364
  virtual bool doCanCreateTable(const drizzled::TableIdentifier &identifier)
 
365
  { (void)identifier;  return true; }
 
366
 
362
367
  // @note All schema methods defined here
363
368
  static void getSchemaNames(SchemaNameList &set_of_names);
364
369
  static bool getSchemaDefinition(const std::string &schema_name, message::Schema &proto);
397
402
  static int createTable(Session& session,
398
403
                         TableIdentifier &identifier,
399
404
                         bool update_create_info,
400
 
                         message::Table& table_proto,
401
 
                         bool used= true);
 
405
                         message::Table& table_proto);
402
406
 
403
407
  static void removeLostTemporaryTables(Session &session, const char *directory);
404
408