~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/quick_group_min_max_select.h

  • Committer: Monty Taylor
  • Date: 2009-12-25 08:50:15 UTC
  • mto: This revision was merged to the branch mainline in revision 1255.
  • Revision ID: mordred@inaugust.com-20091225085015-83sux5qsvy312gew
MEM_ROOT == memory::Root

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
    The following two members are public to allow easy access from
96
96
    TRP_GROUP_MIN_MAX::make_quick()
97
97
  */
98
 
  MEM_ROOT alloc; /**< Memory pool for this and quick_prefix_select data. */
 
98
  drizzled::memory::Root alloc; /**< Memory pool for this and quick_prefix_select data. */
99
99
  QuickRangeSelect *quick_prefix_select; /**< For retrieval of group prefixes. */
100
100
 
101
101
private:
292
292
                         ha_rows records,
293
293
                         uint key_infix_len, 
294
294
                         unsigned char *key_infix,
295
 
                         MEM_ROOT *parent_alloc);
 
295
                         drizzled::memory::Root *parent_alloc);
296
296
 
297
297
  ~QuickGroupMinMaxSelect();
298
298