~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2010-03-27 04:12:14 UTC
  • mfrom: (1395.1.18 build)
  • Revision ID: brian@gaz-20100327041214-2pm5eay51312xjvq
Merge (fixes known issues in ALTER TABLE not resetting correctly DFE).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1447
1447
  // The method below just handles the de-allocation of the table. In
1448
1448
  // a better memory type world, this would not be needed.
1449
1449
private:
1450
 
  void close_temporary(Table *table);
 
1450
  void nukeTable(Table *table);
1451
1451
public:
1452
1452
 
 
1453
  void dumpTemporaryTableNames(const char *id);
1453
1454
  int drop_temporary_table(TableList *table_list);
1454
 
  bool rm_temporary_table(plugin::StorageEngine *base, const char *path);
 
1455
  bool rm_temporary_table(plugin::StorageEngine *base, TableIdentifier &identifier);
1455
1456
  bool rm_temporary_table(TableIdentifier &identifier);
1456
1457
  Table *open_temporary_table(TableIdentifier &identifier,
1457
1458
                              bool link_in_list= true);