~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/heap/hp_rfirst.cc

  • Committer: Monty Taylor
  • Date: 2009-08-17 18:46:08 UTC
  • mto: (1182.1.1 staging)
  • mto: This revision was merged to the branch mainline in revision 1183.
  • Revision ID: mordred@inaugust.com-20090817184608-0b2emowpjr9m6le7
"Fixed" the deadlock test. I'd still like someone to look at what's going on here.

Show diffs side-by-side

added added

removed removed

Lines of Context:
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 "heap_priv.h"
17
 
 
18
 
#include <string.h>
19
 
#include <cassert>
20
 
 
21
 
using namespace drizzled;
22
 
 
23
 
/* Read first record with the current key */
24
 
 
25
 
int heap_rfirst(HP_INFO *info, unsigned char *record, int inx)
26
 
{
27
 
  HP_SHARE *share = info->s;
28
 
  HP_KEYDEF *keyinfo = share->keydef + inx;
29
 
 
30
 
  info->lastinx= inx;
31
 
  if (keyinfo->algorithm == HA_KEY_ALG_BTREE)
32
 
  {
33
 
    unsigned char *pos;
34
 
 
35
 
    if ((pos = (unsigned char *)tree_search_edge(&keyinfo->rb_tree,
36
 
                                                 info->parents,
37
 
                                                 &info->last_pos,
38
 
                                                 offsetof(TREE_ELEMENT, left))))
39
 
    {
40
 
      memcpy(&pos, pos + (*keyinfo->get_key_length)(keyinfo, pos),
41
 
             sizeof(unsigned char*));
42
 
      info->current_ptr = pos;
43
 
      hp_extract_record(share, record, pos);
44
 
      /*
45
 
        If we're performing index_first on a table that was taken from
46
 
        table cache, info->lastkey_len is initialized to previous query.
47
 
        Thus we set info->lastkey_len to proper value for subsequent
48
 
        heap_rnext() calls.
49
 
        This is needed for DELETE queries only, otherwise this variable is
50
 
        not used.
51
 
        Note that the same workaround may be needed for heap_rlast(), but
52
 
        for now heap_rlast() is never used for DELETE queries.
53
 
      */
54
 
      info->lastkey_len= 0;
55
 
      info->update = HA_STATE_AKTIV;
56
 
    }
57
 
    else
58
 
    {
59
 
      errno = HA_ERR_END_OF_FILE;
60
 
      return(errno);
61
 
    }
62
 
    return(0);
63
 
  }
64
 
  else
65
 
  {
66
 
    if (!(info->s->records))
67
 
    {
68
 
      errno=HA_ERR_END_OF_FILE;
69
 
      return(errno);
70
 
    }
71
 
    assert(0); /* TODO fix it */
72
 
    info->current_record=0;
73
 
    info->current_hash_ptr=0;
74
 
    info->update=HA_STATE_PREV_FOUND;
75
 
    return(heap_rnext(info,record));
76
 
  }
77
 
}