~stewart/drizzle/use-catalog-for-path

« back to all changes in this revision

Viewing changes to drizzled/open_tables_state.h

  • Committer: Lee Bieber
  • Date: 2011-03-29 22:31:41 UTC
  • mfrom: (2257.1.3 build)
  • Revision ID: kalebral@gmail.com-20110329223141-yxc22h3l2he58sk0
Merge Andrew - 743842: Build failure using GCC 4.6
Merge Stewart - 738022: CachedDirectory silently fails to add entries if stat() fails
Merge Olaf - Common fwd: add copyright, add more declaration

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
namespace drizzled {
26
26
 
27
 
namespace plugin { class StorageEngine; }
28
 
 
29
 
typedef uint64_t query_id_t;
30
 
 
31
 
class CachedDirectory;
32
 
 
33
27
/**
34
28
  Class that holds information about tables which were opened and locked
35
29
  by the thread. It is also used to save/restore this information in
166
160
 
167
161
  void doGetTableIdentifiers(CachedDirectory &directory,
168
162
                             const identifier::Schema &schema_identifier,
169
 
                             identifier::Table::vector &set_of_identifiers);
 
163
                             identifier::table::vector &set_of_identifiers);
170
164
  void doGetTableIdentifiers(const identifier::Schema &schema_identifier,
171
 
                             identifier::Table::vector &set_of_identifiers);
 
165
                             identifier::table::vector &set_of_identifiers);
172
166
 
173
167
  int doGetTableDefinition(const drizzled::identifier::Table &identifier,
174
168
                           message::Table &table_proto);