~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/table_read_plan.h

  • Committer: Olaf van der Spek
  • Date: 2011-06-22 14:19:44 UTC
  • mto: This revision was merged to the branch mainline in revision 2347.
  • Revision ID: olafvdspek@gmail.com-20110622141944-na0vb0uv30n6u55z
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
  /* Table read plans are allocated on memory::Root and are never deleted */
69
69
  static void *operator new(size_t size, memory::Root *mem_root)
70
70
  { 
71
 
    return (void*) mem_root->alloc_root((uint32_t) size); 
 
71
    return mem_root->alloc(size); 
72
72
  }
73
73
 
74
74
  static void operator delete(void *, size_t)