~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.h

Merge in refactoring tree. This breaks out TableShare into cache and
definition object.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
uint32_t cached_open_tables(void);
34
34
uint32_t cached_table_definitions(void);
35
35
 
36
 
typedef boost::unordered_multimap< TableIdentifier::Key, table::Concurrent *> TableOpenCache;
37
 
typedef std::pair< TableOpenCache::const_iterator, TableOpenCache::const_iterator > TableOpenCacheRange;
38
 
 
39
 
TableOpenCache &get_open_cache();
40
 
void remove_table(table::Concurrent *arg);
 
36
table::Cache &get_open_cache();
41
37
 
42
38
void kill_drizzle(void);
43
39