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 */
16
#include "heap_priv.h"
21
using namespace drizzled;
14
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
23
18
/* Read first record with the current key */
25
20
int heap_rfirst(HP_INFO *info, unsigned char *record, int inx)
22
HP_SHARE *share = info->s;
23
HP_KEYDEF *keyinfo = share->keydef + inx;
27
25
info->lastinx= inx;
29
if (!(info->getShare()->records))
31
errno=HA_ERR_END_OF_FILE;
26
if (keyinfo->algorithm == HA_KEY_ALG_BTREE)
30
if ((pos = tree_search_edge(&keyinfo->rb_tree, info->parents,
31
&info->last_pos, offsetof(TREE_ELEMENT, left))))
33
memcpy(&pos, pos + (*keyinfo->get_key_length)(keyinfo, pos),
34
sizeof(unsigned char*));
35
info->current_ptr = pos;
36
hp_extract_record(share, record, pos);
38
If we're performing index_first on a table that was taken from
39
table cache, info->lastkey_len is initialized to previous query.
40
Thus we set info->lastkey_len to proper value for subsequent
42
This is needed for DELETE queries only, otherwise this variable is
44
Note that the same workaround may be needed for heap_rlast(), but
45
for now heap_rlast() is never used for DELETE queries.
48
info->update = HA_STATE_AKTIV;
52
my_errno = HA_ERR_END_OF_FILE;
59
if (!(info->s->records))
61
my_errno=HA_ERR_END_OF_FILE;
34
64
assert(0); /* TODO fix it */
35
65
info->current_record=0;