~vlad-lesin/percona-server/mysql-5.0.33-original

« back to all changes in this revision

Viewing changes to heap/hp_rfirst.c

  • Committer: Vlad Lesin
  • Date: 2012-07-31 09:21:34 UTC
  • Revision ID: vladislav.lesin@percona.com-20120731092134-zfodx022b7992wsi
VirginĀ 5.0.33

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult 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; either version 2 of the License, or
 
6
   (at your option) any later version.
 
7
 
 
8
   This program is distributed in the hope that it will be useful,
 
9
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
   GNU General Public License for more details.
 
12
 
 
13
   You should have received a copy of the GNU General Public License
 
14
   along with this program; if not, write to the Free Software
 
15
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
16
 
 
17
#include "heapdef.h"
 
18
 
 
19
/* Read first record with the current key */
 
20
 
 
21
int heap_rfirst(HP_INFO *info, byte *record, int inx)
 
22
{
 
23
  HP_SHARE *share = info->s;
 
24
  HP_KEYDEF *keyinfo = share->keydef + inx;
 
25
  
 
26
  DBUG_ENTER("heap_rfirst");
 
27
  info->lastinx= inx;
 
28
  if (keyinfo->algorithm == HA_KEY_ALG_BTREE)
 
29
  {
 
30
    byte *pos;
 
31
 
 
32
    if ((pos = tree_search_edge(&keyinfo->rb_tree, info->parents,
 
33
                                &info->last_pos, offsetof(TREE_ELEMENT, left))))
 
34
    {
 
35
      memcpy(&pos, pos + (*keyinfo->get_key_length)(keyinfo, pos), 
 
36
             sizeof(byte*));
 
37
      info->current_ptr = pos;
 
38
      memcpy(record, pos, (size_t)share->reclength);
 
39
      info->update = HA_STATE_AKTIV;
 
40
    }
 
41
    else
 
42
    {
 
43
      my_errno = HA_ERR_END_OF_FILE;
 
44
      DBUG_RETURN(my_errno);
 
45
    }
 
46
    DBUG_RETURN(0);
 
47
  }
 
48
  else
 
49
  {
 
50
    if (!(info->s->records))
 
51
    {
 
52
      my_errno=HA_ERR_END_OF_FILE;
 
53
      DBUG_RETURN(my_errno);
 
54
    }
 
55
    DBUG_ASSERT(0); /* TODO fix it */
 
56
    info->current_record=0;
 
57
    info->current_hash_ptr=0;
 
58
    info->update=HA_STATE_PREV_FOUND;
 
59
    DBUG_RETURN(heap_rnext(info,record));
 
60
  }
 
61
}