12
12
You should have received a copy of the GNU General Public License
13
13
along with this program; if not, write to the Free Software
14
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
16
16
/* re-read current record */
18
#include "heap_priv.h"
20
20
/* If inx != -1 the new record is read according to index
21
21
(for next/prev). Record must in this case point to last record
25
25
HA_ERR_KEY_NOT_FOUND = Record not found with key
28
int heap_rsame(register HP_INFO *info, unsigned char *record, int inx)
28
int heap_rsame(register HP_INFO *info, uchar *record, int inx)
30
HP_SHARE *share= info->getShare();
30
HP_SHARE *share=info->s;
31
DBUG_ENTER("heap_rsame");
33
if (get_chunk_status(&share->recordspace, info->current_ptr) == CHUNK_STATUS_ACTIVE)
34
if (info->current_ptr[share->reclength])
35
36
if (inx < -1 || inx >= (int) share->keys)
37
return(errno= drizzled::HA_ERR_WRONG_INDEX);
38
DBUG_RETURN(my_errno=HA_ERR_WRONG_INDEX);
39
40
else if (inx != -1)
42
hp_make_key(share->keydef + inx, &info->lastkey[0], record);
43
if (!hp_search(info, share->keydef + inx, &info->lastkey[0], 3))
43
hp_make_key(share->keydef + inx, info->lastkey, record);
44
if (!hp_search(info, share->keydef + inx, info->lastkey, 3))
47
DBUG_RETURN(my_errno);
49
hp_extract_record(share, record, info->current_ptr);
50
memcpy(record,info->current_ptr,(size_t) share->reclength);
54
return(errno= drizzled::HA_ERR_RECORD_DELETED);
55
DBUG_RETURN(my_errno=HA_ERR_RECORD_DELETED);