~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_share.cc

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
*/
25
25
 
26
26
/* Basic functions needed by many modules */
27
 
#include "drizzled/server_includes.h"
 
27
#include "config.h"
28
28
 
29
29
#include <assert.h>
30
30
 
35
35
 
36
36
using namespace std;
37
37
 
 
38
extern size_t table_def_size;
38
39
typedef drizzled::hash_map<string, TableShare *> TableDefCache;
39
40
TableDefCache table_def_cache;
40
41
static pthread_mutex_t LOCK_table_share;