~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2000-2002, 2004 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
612.2.13 by Monty Taylor
Work on removing global.h from headers that should be installed.
18
#include <string.h>
19
1 by brian
clean slate
20
/* Read first record with the current key */
21
481 by Brian Aker
Remove all of uchar.
22
int heap_rfirst(HP_INFO *info, unsigned char *record, int inx)
1 by brian
clean slate
23
{
24
  HP_SHARE *share = info->s;
25
  HP_KEYDEF *keyinfo = share->keydef + inx;
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
26
1 by brian
clean slate
27
  info->lastinx= inx;
28
  if (keyinfo->algorithm == HA_KEY_ALG_BTREE)
29
  {
481 by Brian Aker
Remove all of uchar.
30
    unsigned char *pos;
1 by brian
clean slate
31
960.2.3 by Monty Taylor
Changed heap to c++.
32
    if ((pos = (unsigned char *)tree_search_edge(&keyinfo->rb_tree,
33
                                                 info->parents,
34
                                                 &info->last_pos,
35
                                                 offsetof(TREE_ELEMENT, left))))
1 by brian
clean slate
36
    {
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
37
      memcpy(&pos, pos + (*keyinfo->get_key_length)(keyinfo, pos),
481 by Brian Aker
Remove all of uchar.
38
	     sizeof(unsigned char*));
1 by brian
clean slate
39
      info->current_ptr = pos;
244.1.1 by Harrison Fisk
Port Ebay/Google memory storage engine variable width columns.
40
      hp_extract_record(share, record, pos);
1 by brian
clean slate
41
      /*
42
        If we're performing index_first on a table that was taken from
43
        table cache, info->lastkey_len is initialized to previous query.
44
        Thus we set info->lastkey_len to proper value for subsequent
45
        heap_rnext() calls.
46
        This is needed for DELETE queries only, otherwise this variable is
47
        not used.
48
        Note that the same workaround may be needed for heap_rlast(), but
49
        for now heap_rlast() is never used for DELETE queries.
50
      */
51
      info->lastkey_len= 0;
52
      info->update = HA_STATE_AKTIV;
53
    }
54
    else
55
    {
56
      my_errno = HA_ERR_END_OF_FILE;
51.3.1 by Jay Pipes
Removed all DBUG symbols from heap storage engine
57
      return(my_errno);
1 by brian
clean slate
58
    }
51.3.1 by Jay Pipes
Removed all DBUG symbols from heap storage engine
59
    return(0);
1 by brian
clean slate
60
  }
61
  else
62
  {
63
    if (!(info->s->records))
64
    {
65
      my_errno=HA_ERR_END_OF_FILE;
51.3.1 by Jay Pipes
Removed all DBUG symbols from heap storage engine
66
      return(my_errno);
1 by brian
clean slate
67
    }
51.3.1 by Jay Pipes
Removed all DBUG symbols from heap storage engine
68
    assert(0); /* TODO fix it */
1 by brian
clean slate
69
    info->current_record=0;
70
    info->current_hash_ptr=0;
71
    info->update=HA_STATE_PREV_FOUND;
51.3.1 by Jay Pipes
Removed all DBUG symbols from heap storage engine
72
    return(heap_rnext(info,record));
1 by brian
clean slate
73
  }
74
}