~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/sel_tree.h

  • Committer: Brian Aker
  • Date: 2010-09-15 20:24:31 UTC
  • mto: (1766.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1767.
  • Revision ID: brian@tangent.org-20100915202431-wbrrl4vg6rzjvdiu
Adding opt for optional schedulers and making them --plugin-add only.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
class RangeParameter;
32
32
class SEL_IMERGE;
33
33
class SEL_ARG;
34
 
class RorScanInfo;
35
34
 
36
35
class SEL_TREE : public drizzled::memory::SqlAlloc
37
36
{
75
74
  key_map ror_scans_map;   /* bitmask of ROR scan-able elements in keys */
76
75
  uint32_t n_ror_scans;     /* number of set bits in ror_scans_map */
77
76
 
78
 
  RorScanInfo **ror_scans;     /* list of ROR key scans */
79
 
  RorScanInfo **ror_scans_end; /* last ROR scan */
 
77
  struct st_ror_scan_info **ror_scans;     /* list of ROR key scans */
 
78
  struct st_ror_scan_info **ror_scans_end; /* last ROR scan */
80
79
  /* Note that #records for each key scan is stored in table->quick_rows */
81
80
 
82
81
};