~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/filesort_info.h

  • Committer: Patrick Crews
  • Date: 2010-08-17 16:41:12 UTC
  • mfrom: (1711.6.2 staging)
  • mto: This revision was merged to the branch mainline in revision 1714.
  • Revision ID: gleebix@gmail.com-20100817164112-vaa55iprokbg6m1k
Merge Brian's recursive mutex removal tree

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
39
};