~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Eric Day
  • Date: 2009-10-31 21:53:33 UTC
  • mfrom: (1200 staging)
  • mto: This revision was merged to the branch mainline in revision 1202.
  • Revision ID: eday@oddments.org-20091031215333-j94bjoanwmi68p6f
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
  uint64_t auto_increment_value;
91
91
  uint32_t table_options;
92
92
  uint32_t used_fields;
93
 
  uint32_t key_block_size;
94
93
  enum row_type row_type;
95
94
  drizzled::plugin::StorageEngine *db_type;
96
95
  uint32_t options;                         /* OR of HA_CREATE_ options */
120
119
typedef struct st_ha_check_opt
121
120
{
122
121
  st_ha_check_opt() {}                        /* Remove gcc warning */
 
122
 
123
123
  uint32_t flags;       /* myisam layer flags (e.g. for myisamchk) */
 
124
 
124
125
  /* Just rebuild based on the defintion of the table */
125
126
  bool use_frm;
 
127
 
126
128
  /* new key cache when changing key cache */
127
129
  KEY_CACHE *key_cache;
128
 
  void init();
 
130
 
 
131
  void init()
 
132
  {
 
133
    flags= 0; 
 
134
    use_frm= false;
 
135
  };
129
136
} HA_CHECK_OPT;
130
137
 
131
138