~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/opt_range.h

  • Committer: Brian Aker
  • Date: 2009-11-12 16:13:04 UTC
  • mfrom: (1211.1.7 staging)
  • Revision ID: brian@gaz-20091112161304-opamiauv36fg0n6u
Rollup of Brian, Padraig, and Stewart patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
306
306
class QUICK_RANGE_SELECT : public QUICK_SELECT_I
307
307
{
308
308
protected:
309
 
  Cursor *file;
 
309
  Cursor *cursor;
310
310
  DYNAMIC_ARRAY ranges; /**< ordered array of range ptrs */
311
311
 
312
312
  /** Members to deal with case when this quick select is a ROR-merged scan */
669
669
class QUICK_GROUP_MIN_MAX_SELECT : public QUICK_SELECT_I
670
670
{
671
671
private:
672
 
  Cursor *file; /**< The Cursor used to get data. */
 
672
  Cursor *cursor; /**< The Cursor used to get data. */
673
673
  JOIN *join; /**< Descriptor of the current query */
674
674
  KEY *index_info; /**< The index chosen for data access */
675
675
  unsigned char *record; /**< Buffer where the next record is returned. */