~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2000-2004, 2006 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
int heap_rkey(HP_INFO *info, uchar *record, int inx, const uchar *key, 
19
              key_part_map keypart_map, enum ha_rkey_function find_flag)
20
{
21
  uchar *pos;
22
  HP_SHARE *share= info->s;
23
  HP_KEYDEF *keyinfo= share->keydef + inx;
24
25
  if ((uint) inx >= share->keys)
26
  {
51.3.1 by Jay Pipes
Removed all DBUG symbols from heap storage engine
27
    return(my_errno= HA_ERR_WRONG_INDEX);
1 by brian
clean slate
28
  }
29
  info->lastinx= inx;
30
  info->current_record= (ulong) ~0L;		/* For heap_rrnd() */
31
32
  if (keyinfo->algorithm == HA_KEY_ALG_BTREE)
33
  {
34
    heap_rb_param custom_arg;
35
36
    custom_arg.keyseg= info->s->keydef[inx].seg;
37
    custom_arg.key_length= info->lastkey_len= 
38
      hp_rb_pack_key(keyinfo, (uchar*) info->lastkey,
39
		     (uchar*) key, keypart_map);
40
    custom_arg.search_flag= SEARCH_FIND | SEARCH_SAME;
41
    /* for next rkey() after deletion */
42
    if (find_flag == HA_READ_AFTER_KEY)
43
      info->last_find_flag= HA_READ_KEY_OR_NEXT;
44
    else if (find_flag == HA_READ_BEFORE_KEY)
45
      info->last_find_flag= HA_READ_KEY_OR_PREV;
46
    else
47
      info->last_find_flag= find_flag;
48
    if (!(pos= tree_search_key(&keyinfo->rb_tree, info->lastkey, info->parents,
49
			       &info->last_pos, find_flag, &custom_arg)))
50
    {
51
      info->update= 0;
51.3.1 by Jay Pipes
Removed all DBUG symbols from heap storage engine
52
      return(my_errno= HA_ERR_KEY_NOT_FOUND);
1 by brian
clean slate
53
    }
54
    memcpy(&pos, pos + (*keyinfo->get_key_length)(keyinfo, pos), sizeof(uchar*));
55
    info->current_ptr= pos;
56
  }
57
  else
58
  {
59
    if (!(pos= hp_search(info, share->keydef + inx, key, 0)))
60
    {
61
      info->update= 0;
51.3.1 by Jay Pipes
Removed all DBUG symbols from heap storage engine
62
      return(my_errno);
1 by brian
clean slate
63
    }
53.2.14 by Monty Taylor
Removed HA_END_SPACE_KEY and references to it. It was _supposed_ to be gone anyway, but the ifdef around it was broken (MYSQL_VERSION_ID was actually undefined.)
64
    if (!(keyinfo->flag & HA_NOSAME))
1 by brian
clean slate
65
      memcpy(info->lastkey, key, (size_t) keyinfo->length);
66
  }
67
  memcpy(record, pos, (size_t) share->reclength);
68
  info->update= HA_STATE_AKTIV;
51.3.1 by Jay Pipes
Removed all DBUG symbols from heap storage engine
69
  return(0);
1 by brian
clean slate
70
}
71
72
73
	/* Quick find of record */
74
75
uchar* heap_find(HP_INFO *info, int inx, const uchar *key)
76
{
77
  return hp_search(info, info->s->keydef + inx, key, 0);
78
}