~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Brian Aker
  • Date: 2010-08-19 16:45:03 UTC
  • mfrom: (1711.6.11 staging)
  • Revision ID: brian@tangent.org-20100819164503-t7rhibp5s7bv3dtu
Merge of signals, plus build fix for FreeBSD. Also contains memset/constructor patch.

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