~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/quick_ror_intersect_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:
54
54
  QuickRorIntersectSelect(Session *session, 
55
55
                             Table *table,
56
56
                             bool retrieve_full_rows,
57
 
                             MEM_ROOT *parent_alloc);
 
57
                             drizzled::memory::Root *parent_alloc);
58
58
 
59
59
  ~QuickRorIntersectSelect();
60
60
 
159
159
   */
160
160
  QuickRangeSelect *cpk_quick;
161
161
 
162
 
  MEM_ROOT alloc; /**< Memory pool for this and merged quick selects data. */
 
162
  drizzled::memory::Root alloc; /**< Memory pool for this and merged quick selects data. */
163
163
  Session *session; /**< Pointer to the current session */
164
164
  bool need_to_fetch_row; /**< if true, do retrieve full table records. */
165
165
  /** in top-level quick select, true if merged scans where initialized */