~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2000-2002 MySQL AB
2
3
   This program is free software; you can redistribute it and/or modify
4
   it under the terms of the GNU General Public License as published by
5
   the Free Software Foundation; version 2 of the License.
6
7
   This program is distributed in the hope that it will be useful,
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
   GNU General Public License for more details.
11
12
   You should have received a copy of the GNU General Public License
13
   along with this program; if not, write to the Free Software
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
16
#include "heapdef.h"
17
18
	/* Read first record with the current key */
19
20
21
int heap_rlast(HP_INFO *info, uchar *record, int inx)
22
{
23
  HP_SHARE *share=    info->s;
24
  HP_KEYDEF *keyinfo= share->keydef + inx;
25
26
  info->lastinx= inx;
27
  if (keyinfo->algorithm == HA_KEY_ALG_BTREE)
28
  {
29
    uchar *pos;
30
31
    if ((pos = tree_search_edge(&keyinfo->rb_tree, info->parents,
32
                                &info->last_pos, offsetof(TREE_ELEMENT, right))))
33
    {
34
      memcpy(&pos, pos + (*keyinfo->get_key_length)(keyinfo, pos), 
35
	     sizeof(uchar*));
36
      info->current_ptr = pos;
244.1.1 by Harrison Fisk
Port Ebay/Google memory storage engine variable width columns.
37
      hp_extract_record(share, record, pos);
1 by brian
clean slate
38
      info->update = HA_STATE_AKTIV;
39
    }
40
    else
41
    {
42
      my_errno = HA_ERR_END_OF_FILE;
51.3.1 by Jay Pipes
Removed all DBUG symbols from heap storage engine
43
      return(my_errno);
1 by brian
clean slate
44
    }
51.3.1 by Jay Pipes
Removed all DBUG symbols from heap storage engine
45
    return(0);
1 by brian
clean slate
46
  }
47
  else
48
  {
49
    info->current_ptr=0;
50
    info->current_hash_ptr=0;
51
    info->update=HA_STATE_NEXT_FOUND;
51.3.1 by Jay Pipes
Removed all DBUG symbols from heap storage engine
52
    return(heap_rprev(info,record));
1 by brian
clean slate
53
  }
54
}