~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/field.cc

  • Committer: Brian Aker
  • Date: 2010-05-15 00:44:51 UTC
  • Revision ID: brian@gaz-20100515004451-hacli300cjtbmjo0
Remove of KeyPartInfo

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
 
85
85
bool Item_field::find_item_in_field_list_processor(unsigned char *arg)
86
86
{
87
 
  KEY_PART_INFO *first_non_group_part= *((KEY_PART_INFO **) arg);
88
 
  KEY_PART_INFO *last_part= *(((KEY_PART_INFO **) arg) + 1);
89
 
  KEY_PART_INFO *cur_part;
 
87
  KeyPartInfo *first_non_group_part= *((KeyPartInfo **) arg);
 
88
  KeyPartInfo *last_part= *(((KeyPartInfo **) arg) + 1);
 
89
  KeyPartInfo *cur_part;
90
90
 
91
91
  for (cur_part= first_non_group_part; cur_part != last_part; cur_part++)
92
92
  {