~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_rprev.c

  • Committer: Brian Aker
  • Date: 2008-08-05 06:19:05 UTC
  • mfrom: (244.1.1 drizzle-mem-ebay)
  • mto: This revision was merged to the branch mainline in revision 264.
  • Revision ID: brian@tangent.org-20080805061905-1r8krslxae65qh76
Merge from Harrison Fisk of the Ebay + Google Hash engine.

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
}