~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/uniques.cc

  • Committer: Monty Taylor
  • Date: 2009-10-06 19:14:39 UTC
  • mfrom: (1130.2.18 plugin-base-class)
  • mto: This revision was merged to the branch mainline in revision 1184.
  • Revision ID: mordred@inaugust.com-20091006191439-fd1vvlp22654l3k3
Merged latest plugin-base-class.

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
  :max_in_memory_size(max_in_memory_size_arg), size(size_arg), elements(0)
68
68
{
69
69
  my_b_clear(&file);
70
 
  init_tree(&tree, (ulong) (max_in_memory_size / 16), 0, size, comp_func, 0,
 
70
  init_tree(&tree, (ulong) (max_in_memory_size / 16), 0, size, comp_func, false,
71
71
            NULL, comp_func_fixed_arg);
72
72
  /* If the following fail's the next add will also fail */
73
73
  my_init_dynamic_array(&file_ptrs, sizeof(BUFFPEK), 16, 16);