~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/open_tables_state.h

  • Committer: Brian Aker
  • Date: 2011-01-03 18:49:27 UTC
  • mfrom: (2041.3.12 session-fix)
  • Revision ID: brian@tangent.org-20110103184927-2oso3g5g7g1gwb5m
Refactor drop schema so that it can be used for removing tables under
catalogs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
  */
51
51
private:
52
52
  Table *temporary_tables;
 
53
 
53
54
public:
54
55
 
55
56
  Table *getTemporaryTables()
70
71
 
71
72
protected:
72
73
  void close_temporary_tables();
 
74
 
73
75
public:
74
76
  void close_temporary_table(Table *table);
 
77
  
 
78
private:
75
79
  // The method below just handles the de-allocation of the table. In
76
80
  // a better memory type world, this would not be needed.
77
 
private:
78
81
  void nukeTable(Table *table);
 
82
 
79
83
public:
80
 
 
81
84
  /* Work with temporary tables */
82
85
  Table *find_temporary_table(const TableIdentifier &identifier);
83
86