~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.h

  • Committer: Brian Aker
  • Date: 2009-04-28 21:46:57 UTC
  • mto: This revision was merged to the branch mainline in revision 1001.
  • Revision ID: brian@gaz-20090428214657-8vxn7n9dc6epb3zy
Renamed TABLE_SHARE to TableShare

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <stdint.h>
24
24
#include <drizzled/table.h>
25
25
 
26
 
class TABLE_SHARE;
 
26
class TableShare;
27
27
 
28
28
void table_cache_free(void);
29
29
bool table_cache_init(void);
30
30
bool table_def_init(void);
31
31
void table_def_free(void);
32
 
void assign_new_table_id(TABLE_SHARE *share);
 
32
void assign_new_table_id(TableShare *share);
33
33
uint32_t cached_open_tables(void);
34
34
uint32_t cached_table_definitions(void);
35
35