~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/sel_tree.h

  • Committer: lbieber
  • Date: 2010-10-05 21:14:30 UTC
  • mfrom: (1775.5.2 bug621331)
  • mto: This revision was merged to the branch mainline in revision 1814.
  • Revision ID: lbieber@orisndriz08-20101005211430-xmy19fcls25swctl
Merge Billy - fix bug 621331 - Replace use of stringstream with boost::lexical_cast

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
};