~linuxjedi/libdrizzle/5.1-docs2

« back to all changes in this revision

Viewing changes to libdrizzle/structs.h

  • Committer: Andrew Hutchings
  • Date: 2012-12-29 16:29:59 UTC
  • mto: This revision was merged to the branch mainline in revision 70.
  • Revision ID: andrew@linuxjedi.co.uk-20121229162959-wgwas8fya1de5af6
InitialĀ binlogĀ checksumĀ support

Show diffs side-by-side

added added

removed removed

Lines of Context:
186
186
  size_t *field_sizes;
187
187
  size_t **field_sizes_list;
188
188
  drizzle_binlog_st *binlog_event;
 
189
  bool binlog_checksums;
189
190
  uint8_t **null_bitmap_list;
190
191
  uint8_t *null_bitmap;
191
192
  uint8_t null_bitmap_length;
221
222
    field_sizes(NULL),
222
223
    field_sizes_list(NULL),
223
224
    binlog_event(NULL),
 
225
    binlog_checksums(false),
224
226
    null_bitmap_list(NULL),
225
227
    null_bitmap(NULL),
226
228
    null_bitmap_length(0),
242
244
  uint32_t next_pos;
243
245
  uint16_t flags;
244
246
  uint16_t extra_flags;
 
247
  uint32_t checksum;
245
248
  uint8_t *data;
246
249
  uint8_t *raw_data;
247
250
  uint32_t raw_length;