~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2010-03-23 01:22:14 UTC
  • Revision ID: brian@gaz-20100323012214-p1r5c7f25wif5leo
Fix for cases where not all files are removed during a deletion of a schema.
I've added a dump of the directory if this happens (I want to see this in
the valgrind reports on lp).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1429
1429
  Table *find_temporary_table(TableList *table_list);
1430
1430
  Table *find_temporary_table(const char *db, const char *table_name);
1431
1431
  Table *find_temporary_table(TableIdentifier &identifier);
 
1432
 
1432
1433
  void doGetTableNames(CachedDirectory &directory,
1433
1434
                       const std::string& db_name,
1434
1435
                       std::set<std::string>& set_of_names);
 
1436
  void doGetTableNames(const std::string& db_name,
 
1437
                       std::set<std::string>& set_of_names);
 
1438
 
1435
1439
  int doGetTableDefinition(drizzled::TableIdentifier &identifier,
1436
1440
                           message::Table &table_proto);
1437
1441
  bool doDoesTableExist(TableIdentifier &identifier);