~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/sel_tree.h

  • Committer: Brian Aker
  • Date: 2010-10-08 20:13:50 UTC
  • mfrom: (1823.1.3 trunk-drizzle)
  • Revision ID: brian@tangent.org-20101008201350-bmjpgakk12zmyw10
Overall merge of Padraig

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;
34
35
 
35
36
class SEL_TREE : public drizzled::memory::SqlAlloc
36
37
{
74
75
  key_map ror_scans_map;   /* bitmask of ROR scan-able elements in keys */
75
76
  uint32_t n_ror_scans;     /* number of set bits in ror_scans_map */
76
77
 
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 */
 
78
  RorScanInfo **ror_scans;     /* list of ROR key scans */
 
79
  RorScanInfo **ror_scans_end; /* last ROR scan */
79
80
  /* Note that #records for each key scan is stored in table->quick_rows */
80
81
 
81
82
};