~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/open_tables_state.h

  • Committer: Mark Atwood
  • Date: 2011-05-03 06:15:46 UTC
  • mfrom: (2280.1.10 prune3)
  • Revision ID: me@mark.atwood.name-20110503061546-1anpohbzcy1tzmc7
mergeĀ lp:~olafvdspek/drizzle/prune3

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
    or for an intermediate table used in ALTER.
48
48
    XXX Why are internal temporary tables added to this list?
49
49
  */
50
 
// private:
51
50
  Table *temporary_tables;
52
51
 
53
 
public:
54
 
 
55
52
  Table *getTemporaryTables()
56
53
  {
57
54
    return temporary_tables;
70
67
  void close_temporary_tables();
71
68
  void close_temporary_table(Table*);
72
69
  void nukeTable(Table*);
 
70
  void close_open_tables();
 
71
  bool free_cached_table();
73
72
 
74
 
public:
75
73
  /* Work with temporary tables */
76
74
  Table *find_temporary_table(const identifier::Table &identifier);
77
75