~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.cc

  • 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:
682
682
class DropTables: public unary_function<StorageEngine *, void>
683
683
{
684
684
  Session &session;
685
 
  TableIdentifierList &table_identifiers;
 
685
  TableIdentifiers &table_identifiers;
686
686
 
687
687
public:
688
688
 
689
 
  DropTables(Session &session_arg, TableIdentifierList &table_identifiers_arg) :
 
689
  DropTables(Session &session_arg, TableIdentifiers &table_identifiers_arg) :
690
690
    session(session_arg),
691
691
    table_identifiers(table_identifiers_arg)
692
692
  { }
710
710
void StorageEngine::removeLostTemporaryTables(Session &session, const char *directory)
711
711
{
712
712
  CachedDirectory dir(directory, set_of_table_definition_ext);
713
 
  TableIdentifierList table_identifiers;
 
713
  TableIdentifiers table_identifiers;
714
714
 
715
715
  if (dir.fail())
716
716
  {