~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.h

  • Committer: Brian Aker
  • Date: 2009-01-17 17:08:25 UTC
  • Revision ID: brian@gir-3.local-20090117170825-l7vo00mje6uk5cg0
Test case fixes + TABLE_CACHE to class (will rename in manner which is NOT
YELLING CASE UP).

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
 
50
50
class Table;
51
51
class TableList;
52
 
typedef struct st_table_share TABLE_SHARE;
 
52
class TABLE_SHARE;
53
53
struct st_foreign_key_info;
54
54
typedef struct st_foreign_key_info FOREIGN_KEY_INFO;
55
55
struct order_st;
156
156
{
157
157
public:
158
158
  typedef uint64_t Table_flags;
 
159
 
159
160
protected:
160
 
  struct st_table_share *table_share;   /* The table definition */
 
161
  TABLE_SHARE *table_share;   /* The table definition */
161
162
  Table *table;               /* The current open table */
162
163
  Table_flags cached_table_flags;       /* Set on init() and open() */
163
164