~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/opt_range.h

Fixed bashism.

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 *cursor;
 
309
  Cursor *file;
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 *cursor; /**< The Cursor used to get data. */
 
672
  Cursor *file; /**< 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. */