~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: 2010-02-05 08:11:15 UTC
  • mfrom: (1283 build)
  • mto: (1273.13.43 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1300.
  • Revision ID: mordred@inaugust.com-20100205081115-dr82nvrwv4lvw7sd
Merged trunk.

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 */