~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/filesort_info.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:
36
36
  void    (*unpack)(struct sort_addon_field_st *, unsigned char *); /* To unpack back */
37
37
  unsigned char     *record_pointers;    /* If sorted in memory */
38
38
  ha_rows   found_records;      /* How many records in sort */
 
39
 
 
40
  filesort_info_st() :
 
41
    io_cache(0),
 
42
    sort_keys(0),
 
43
    buffpek(0),
 
44
    buffpek_len(0),
 
45
    addon_buf(0),
 
46
    addon_length(0),
 
47
    addon_field(0),
 
48
    unpack(0),
 
49
    record_pointers(0),
 
50
    found_records()
 
51
  { }
39
52
};
40
53
 
41
54
} /* namespace drizzled */