~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Brian Aker
  • Date: 2010-07-09 08:40:41 UTC
  • mfrom: (1643.3.13 rollup)
  • Revision ID: brian@gaz-20100709084041-tkghyfbzwvfqypi8
MergeĀ IS

Show diffs side-by-side

added added

removed removed

Lines of Context:
336
336
  { (void)identifier;  return true; }
337
337
 
338
338
  // @note All schema methods defined here
339
 
  static void getSchemaIdentifiers(Session &session, SchemaIdentifierList &schemas);
 
339
  static void getSchemaIdentifiers(Session &session, SchemaIdentifiers &schemas);
340
340
  static bool getSchemaDefinition(const drizzled::TableIdentifier &identifier, message::Schema &proto);
341
341
  static bool getSchemaDefinition(const drizzled::SchemaIdentifier &identifier, message::Schema &proto);
342
342
  static bool doesSchemaExist(const drizzled::SchemaIdentifier &identifier);
346
346
  static bool alterSchema(const drizzled::message::Schema &schema_message);
347
347
 
348
348
  // @note make private/protected
349
 
  virtual void doGetSchemaIdentifiers(SchemaIdentifierList&)
 
349
  virtual void doGetSchemaIdentifiers(SchemaIdentifiers&)
350
350
  { }
351
351
 
352
352
  virtual bool doGetSchemaDefinition(const drizzled::SchemaIdentifier&, drizzled::message::Schema&)