~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/sel_tree.h

  • Committer: Stewart Smith
  • Date: 2010-11-03 03:27:09 UTC
  • mto: (1902.1.1 build) (1910.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1903.
  • Revision ID: stewart@flamingspork.com-20101103032709-oyvfrc6eb8fzj0mr
fix docs warning: docs/unlock.rst:2: (WARNING/2) Title underline too short.

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