~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/unique.h

  • Committer: Monty Taylor
  • Date: 2009-12-22 21:08:00 UTC
  • mto: This revision was merged to the branch mainline in revision 1253.
  • Revision ID: mordred@inaugust.com-20091222210800-mywdu66xsod81ul6
Removed last non-pointer public IO_CACHE from drizzled/

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
   memory simultaneously with iteration, so it should be ~2-3x faster.
30
30
 */
31
31
 
 
32
typedef struct st_io_cache IO_CACHE;
 
33
 
32
34
class Unique :public Sql_alloc
33
35
{
34
36
  DYNAMIC_ARRAY file_ptrs;
35
37
  ulong max_elements;
36
38
  size_t max_in_memory_size;
37
 
  IO_CACHE file;
 
39
  IO_CACHE *file;
38
40
  TREE tree;
39
41
  unsigned char *record_pointers;
40
42
  bool flush();