~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2009-11-26 18:50:02 UTC
  • mfrom: (1226.1.4 push)
  • Revision ID: brian@gaz-20091126185002-se908a2ceq9ub2rn
Mege of TableIdentifier gran patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1453
1453
public:
1454
1454
 
1455
1455
  int drop_temporary_table(TableList *table_list);
1456
 
  bool rm_temporary_table(drizzled::plugin::StorageEngine *base, char *path);
1457
 
  Table *open_temporary_table(const char *path, const char *db,
1458
 
                              const char *table_name, bool link_in_list= true);
 
1456
  bool rm_temporary_table(drizzled::plugin::StorageEngine *base, const char *path);
 
1457
  bool rm_temporary_table(drizzled::plugin::StorageEngine *base, drizzled::TableIdentifier &identifier);
 
1458
  Table *open_temporary_table(drizzled::TableIdentifier &identifier,
 
1459
                              bool link_in_list= true);
1459
1460
  
1460
1461
  /* Reopen operations */
1461
1462
  bool reopen_tables(bool get_locks, bool mark_share_as_old);