~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_rkey.c

MergedĀ fromĀ Mats.

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
  /* Store last used key as a base for read next */
176
176
  memcpy(info->lastkey,key_buff,pack_key_length);
177
177
  info->last_rkey_length= pack_key_length;
178
 
  memset((char*) info->lastkey+pack_key_length, 0, info->s->base.rec_reflength);
 
178
  memset(info->lastkey+pack_key_length, 0, info->s->base.rec_reflength);
179
179
  info->lastkey_length=pack_key_length+info->s->base.rec_reflength;
180
180
 
181
181
  if (search_flag == HA_READ_AFTER_KEY)