~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Brian Aker
  • Date: 2010-08-18 03:47:58 UTC
  • mto: This revision was merged to the branch mainline in revision 1720.
  • Revision ID: brian@tangent.org-20100818034758-4cneukk4ppl8u855
Updating so that structures have constructor (removed memset calls).

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
  uint32_t index_add_count;
77
77
  uint32_t *index_add_buffer;
78
78
  void *data;
 
79
 
 
80
  st_ha_alter_information() :
 
81
    key_info_buffer(0),
 
82
    key_count(0),
 
83
    index_drop_count(0),
 
84
    index_drop_buffer(0),
 
85
    index_add_count(0),
 
86
    index_add_buffer(0),
 
87
    data(0)
 
88
  { }
 
89
 
79
90
} HA_ALTER_INFO;
80
91
 
81
92