~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/filesort_info.h

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_FILESORT_INFO_H
21
21
#define DRIZZLED_FILESORT_INFO_H
22
22
 
 
23
namespace drizzled
 
24
{
 
25
 
23
26
/* Information on state of filesort */
24
27
struct filesort_info_st
25
28
{
26
 
  IO_CACHE *io_cache;           /* If sorted through filesort */
 
29
  internal::IO_CACHE *io_cache;           /* If sorted through filesort */
27
30
  unsigned char     **sort_keys;        /* Buffer for sorting keys */
28
31
  unsigned char     *buffpek;           /* Buffer for buffpek structures */
29
32
  uint32_t      buffpek_len;        /* Max number of buffpeks in the buffer */
35
38
  ha_rows   found_records;      /* How many records in sort */
36
39
};
37
40
 
 
41
} /* namespace drizzled */
 
42
 
38
43
#endif /* DRIZZLED_FILESORT_INFO_H */