~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/open_tables_state.h

merged with up to date trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems
 
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
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