1
by brian
clean slate |
1 |
/* Copyright (C) 2000-2002 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
|
|
1802.10.2
by Monty Taylor
Update all of the copyright headers to include the correct address. |
14 |
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
|
1
by brian
clean slate |
15 |
|
1130.3.28
by Monty Taylor
Moved heapdef.h and myisamdef.h to *_priv.h for easier filtering for include guard check. |
16 |
#include "heap_priv.h" |
1
by brian
clean slate |
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 |
||
1280.1.10
by Monty Taylor
Put everything in drizzled into drizzled namespace. |
22 |
using namespace drizzled; |
1
by brian
clean slate |
23 |
|
481
by Brian Aker
Remove all of uchar. |
24 |
int heap_rlast(HP_INFO *info, unsigned char *record, int inx) |
1
by brian
clean slate |
25 |
{
|
26 |
info->lastinx= inx; |
|
27 |
{
|
|
28 |
info->current_ptr=0; |
|
29 |
info->current_hash_ptr=0; |
|
30 |
info->update=HA_STATE_NEXT_FOUND; |
|
51.3.1
by Jay Pipes
Removed all DBUG symbols from heap storage engine |
31 |
return(heap_rprev(info,record)); |
1
by brian
clean slate |
32 |
}
|
33 |
}
|