~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_rprev.c

  • Committer: Harrison Fisk
  • Date: 2008-08-05 05:01:04 UTC
  • mto: (261.1.8 drizzle)
  • mto: This revision was merged to the branch mainline in revision 264.
  • Revision ID: harrison@mysql.com-20080805050104-bz1tt53bp1dg996e
Port Ebay/Google memory storage engine variable width columns.  

See: http://code.google.com/p/mysql-heap-dynamic-rows/

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
      my_errno=HA_ERR_END_OF_FILE;
77
77
    return(my_errno);
78
78
  }
79
 
  memcpy(record,pos,(size_t) share->reclength);
 
79
  hp_extract_record(share, record, pos);
80
80
  info->update=HA_STATE_AKTIV | HA_STATE_PREV_FOUND;
81
81
  return(0);
82
82
}