diff options
author | unknown <ram@gw.udmsearch.izhnet.ru> | 2002-04-29 13:53:29 +0500 |
---|---|---|
committer | unknown <ram@gw.udmsearch.izhnet.ru> | 2002-04-29 13:53:29 +0500 |
commit | 234dc3a35e8ae7f63aa6d3b7891b72e735728639 (patch) | |
tree | 77b9ea9e8c3560b6e82eaad873f24e15f519602d /include/heap.h | |
parent | 3adee5046d70aa91fead16c289dd2a1b098b3dfd (diff) | |
download | mariadb-git-234dc3a35e8ae7f63aa6d3b7891b72e735728639.tar.gz |
Index number argument
Fix in test results
heap/hp_rfirst.c:
Index number argument
heap/hp_rlast.c:
Index number argument
heap/hp_test2.c:
Index number argument
include/heap.h:
Index number argument
mysql-test/r/heap_btree.result:
Test results fix
sql/ha_heap.cc:
Index number argument
Diffstat (limited to 'include/heap.h')
-rw-r--r-- | include/heap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/heap.h b/include/heap.h index 088bb1241b2..8cc62df9250 100644 --- a/include/heap.h +++ b/include/heap.h @@ -161,8 +161,8 @@ extern int heap_panic(enum ha_panic_function flag); extern int heap_rsame(HP_INFO *info,byte *record,int inx); extern int heap_rnext(HP_INFO *info,byte *record); extern int heap_rprev(HP_INFO *info,byte *record); -extern int heap_rfirst(HP_INFO *info,byte *record); -extern int heap_rlast(HP_INFO *info,byte *record); +extern int heap_rfirst(HP_INFO *info,byte *record,int inx); +extern int heap_rlast(HP_INFO *info,byte *record,int inx); extern void heap_clear(HP_INFO *info); ha_rows hp_rb_records_in_range(HP_INFO *info, int inx, const byte *start_key, |