~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Vijay Samuel
  • Date: 2010-08-20 02:23:54 UTC
  • mfrom: (1720.1.4 build)
  • mto: (1726.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1727.
  • Revision ID: vijay@vijay-20100820022354-sxunltk8q3nb8ld2
Merge removed the drizzled/option.h include from client_priv.h and archive_reader.

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