~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/quick_range_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:
99
99
 
100
100
  uint32_t mrr_flags; /**< Flags to be used with MRR interface */
101
101
 
102
 
  MEM_ROOT alloc;
 
102
  drizzled::memory::Root alloc;
103
103
 
104
104
  QuickRangeSelect(Session *session,
105
105
                     Table *table,
106
106
                     uint32_t index_arg,
107
107
                     bool no_alloc,
108
 
                     MEM_ROOT *parent_alloc,
 
108
                     drizzled::memory::Root *parent_alloc,
109
109
                     bool *create_err);
110
110
 
111
111
  ~QuickRangeSelect();
247
247
                                            SEL_ARG *key_tree,
248
248
                                            uint32_t mrr_flags,
249
249
                                            uint32_t mrr_buf_size,
250
 
                                            MEM_ROOT *alloc);
 
250
                                            drizzled::memory::Root *alloc);
251
251
  friend class QuickSelectDescending;
252
252
 
253
253
  friend class QuickIndexMergeSelect;