~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/my_tree.h

  • Committer: Monty Taylor
  • Date: 2009-12-29 18:26:43 UTC
  • mfrom: (1257 build)
  • mto: This revision was merged to the branch mainline in revision 1258.
  • Revision ID: mordred@inaugust.com-20091229182643-bv3c4va7rit6wmvl
MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
extern "C" {
27
27
#endif
28
28
 
29
 
typedef struct st_mem_root MEM_ROOT;
30
 
 
31
29
/* Worst case tree is half full. This gives use 2^(MAX_TREE_HEIGHT/2) leafs */
32
30
static const int MAX_TREE_HEIGHT= 64;
33
31
 
56
54
  size_t allocated;
57
55
  qsort_cmp2 compare;
58
56
  void *custom_arg;
59
 
  MEM_ROOT mem_root;
 
57
  drizzled::memory::Root mem_root;
60
58
  bool with_delete;
61
59
  tree_element_free free;
62
60
  uint32_t flag;