~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/quick_ror_intersect_select.h

Merge Monty

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
 
                             drizzled::memory::Root *parent_alloc);
 
57
                             memory::Root *parent_alloc);
58
58
 
59
59
  ~QuickRorIntersectSelect();
60
60
 
159
159
   */
160
160
  QuickRangeSelect *cpk_quick;
161
161
 
162
 
  drizzled::memory::Root alloc; /**< Memory pool for this and merged quick selects data. */
 
162
  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 */