~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-15 01:19:45 UTC
  • Revision ID: brian@gaz-20100515011945-uxhf94vi0tzm0vq6
Rename of KEY to KeyInfo

Show diffs side-by-side

added added

removed removed

Lines of Context:
69
69
 
70
70
  Cursor *cursor; /**< The Cursor used to get data. */
71
71
  JOIN *join; /**< Descriptor of the current query */
72
 
  KEY *index_info; /**< The index chosen for data access */
 
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(). */
75
75
  unsigned char *group_prefix; /**< Key prefix consisting of the GROUP fields. */
288
288
                         uint32_t group_prefix_len, 
289
289
                         uint32_t group_key_parts,
290
290
                         uint32_t used_key_parts, 
291
 
                         KEY *index_info,
 
291
                         KeyInfo *index_info,
292
292
                         uint use_index, 
293
293
                         double read_cost, 
294
294
                         ha_rows records,