~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-04 08:14:46 UTC
  • mfrom: (1277.2.1 build) (1280.2.1 build)
  • mto: This revision was merged to the branch mainline in revision 1283.
  • Revision ID: mordred@inaugust.com-20100204081446-ldh9m486va30uap6
Put everything in drizzled into drizzled namespace.
Put internal stuff into drizzled::internal namespace.
Removed some cruft.
Now every symbol that is shipped in a header is in the drizzled namespace
and everything in the server that's not shipped is labeled internal. woot. 
Removed a lot of the extra extern "C" stuff that was in there. Less ugliness for
internal callbacks now for Sun Studio.

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