~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.cc

  • 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:
579
579
{
580
580
  CachedDirectory &directory;
581
581
  const SchemaIdentifier &identifier;
582
 
  TableIdentifiers &set_of_identifiers;
 
582
  TableIdentifier::vector &set_of_identifiers;
583
583
 
584
584
public:
585
585
 
586
 
  AddTableIdentifier(CachedDirectory &directory_arg, const SchemaIdentifier &identifier_arg, TableIdentifiers &of_names) :
 
586
  AddTableIdentifier(CachedDirectory &directory_arg, const SchemaIdentifier &identifier_arg, TableIdentifier::vector &of_names) :
587
587
    directory(directory_arg),
588
588
    identifier(identifier_arg),
589
589
    set_of_identifiers(of_names)
597
597
};
598
598
 
599
599
 
600
 
void StorageEngine::getIdentifiers(Session &session, const SchemaIdentifier &schema_identifier, TableIdentifiers &set_of_identifiers)
 
600
void StorageEngine::getIdentifiers(Session &session, const SchemaIdentifier &schema_identifier, TableIdentifier::vector &set_of_identifiers)
601
601
{
602
602
  static SchemaIdentifier INFORMATION_SCHEMA_IDENTIFIER("information_schema");
603
603
  static SchemaIdentifier DATA_DICTIONARY_IDENTIFIER("data_dictionary");
656
656
class DropTables: public unary_function<StorageEngine *, void>
657
657
{
658
658
  Session &session;
659
 
  TableIdentifiers &table_identifiers;
 
659
  TableIdentifier::vector &table_identifiers;
660
660
 
661
661
public:
662
662
 
663
 
  DropTables(Session &session_arg, TableIdentifiers &table_identifiers_arg) :
 
663
  DropTables(Session &session_arg, TableIdentifier::vector &table_identifiers_arg) :
664
664
    session(session_arg),
665
665
    table_identifiers(table_identifiers_arg)
666
666
  { }
684
684
void StorageEngine::removeLostTemporaryTables(Session &session, const char *directory)
685
685
{
686
686
  CachedDirectory dir(directory, set_of_table_definition_ext);
687
 
  TableIdentifiers table_identifiers;
 
687
  TableIdentifier::vector table_identifiers;
688
688
 
689
689
  if (dir.fail())
690
690
  {