~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to drizzled/filesort_info.h

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-10-02 14:17:48 UTC
  • mfrom: (1.1.1 upstream)
  • mto: (2.1.17 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20101002141748-m6vbfbfjhrw1153e
Tags: 2010.09.1802-1
* New upstream release.
* Removed pid-file argument hack.
* Updated GPL-2 address to be new address.
* Directly copy in drizzledump.1 since debian doesn't have sphinx 1.0 yet.
* Link to jquery from libjs-jquery. Add it as a depend.
* Add drizzled.8 symlink to the install files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
  uint32_t      buffpek_len;        /* Max number of buffpeks in the buffer */
33
33
  unsigned char     *addon_buf;         /* Pointer to a buffer if sorted with fields */
34
34
  size_t    addon_length;       /* Length of the buffer */
35
 
  struct st_sort_addon_field *addon_field;     /* Pointer to the fields info */
36
 
  void    (*unpack)(struct st_sort_addon_field *, unsigned char *); /* To unpack back */
 
35
  struct sort_addon_field_st *addon_field;     /* Pointer to the fields info */
 
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 */