~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Brian Aker
  • Date: 2010-12-02 01:39:53 UTC
  • mto: This revision was merged to the branch mainline in revision 1968.
  • Revision ID: brian@tangent.org-20101202013953-9ie7kafjag0e051q
Style cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
288
288
 
289
289
  virtual void doGetTableIdentifiers(CachedDirectory &directory,
290
290
                                     const drizzled::SchemaIdentifier &schema_identifier,
291
 
                                     TableIdentifiers &set_of_identifiers)= 0;
 
291
                                     TableIdentifier::vector &set_of_identifiers)= 0;
292
292
 
293
293
  virtual int doDropTable(Session &session,
294
294
                          const drizzled::TableIdentifier &identifier)= 0;
320
320
                       const drizzled::TableIdentifier &identifier);
321
321
  static void getIdentifiers(Session &session,
322
322
                             const SchemaIdentifier &schema_identifier,
323
 
                             TableIdentifiers &set_of_identifiers);
 
323
                             TableIdentifier::vector &set_of_identifiers);
324
324
 
325
325
  // Check to see if any SE objects to creation.
326
326
  static bool canCreateTable(const drizzled::TableIdentifier &identifier);