~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/quick_group_min_max_select.h

  • Committer: Brian Aker
  • Date: 2010-05-19 00:35:41 UTC
  • mto: This revision was merged to the branch mainline in revision 1542.
  • Revision ID: brian@gaz-20100519003541-7ecxcuwv9klvzi8l
JOIN -> Join rename

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
private:
69
69
 
70
70
  Cursor *cursor; /**< The Cursor used to get data. */
71
 
  JOIN *join; /**< Descriptor of the current query */
 
71
  Join *join; /**< Descriptor of the current query */
72
72
  KeyInfo *index_info; /**< The index chosen for data access */
73
73
  unsigned char *record; /**< Buffer where the next record is returned. */
74
74
  unsigned char *tmp_record; /**< Temporary storage for next_min(), next_max(). */
281
281
     None
282
282
   */
283
283
  QuickGroupMinMaxSelect(Table *table, 
284
 
                         JOIN *join, 
 
284
                         Join *join, 
285
285
                         bool have_min,
286
286
                         bool have_max, 
287
287
                         KeyPartInfo *min_max_arg_part,