summaryrefslogtreecommitdiff
path: root/heap/hp_test2.c
diff options
context:
space:
mode:
authorunknown <ram@gw.udmsearch.izhnet.ru>2002-04-29 13:53:29 +0500
committerunknown <ram@gw.udmsearch.izhnet.ru>2002-04-29 13:53:29 +0500
commit234dc3a35e8ae7f63aa6d3b7891b72e735728639 (patch)
tree77b9ea9e8c3560b6e82eaad873f24e15f519602d /heap/hp_test2.c
parent3adee5046d70aa91fead16c289dd2a1b098b3dfd (diff)
downloadmariadb-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 'heap/hp_test2.c')
-rw-r--r--heap/hp_test2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/heap/hp_test2.c b/heap/hp_test2.c
index f8b6a8cd7d3..a972e7073e0 100644
--- a/heap/hp_test2.c
+++ b/heap/hp_test2.c
@@ -306,7 +306,7 @@ int main(int argc, char *argv[])
if (!silent)
printf("- Read last key - delete - prev - prev - opt_delete - prev -> first\n");
- if (heap_rlast(file,record3)) goto err;
+ if (heap_rlast(file,record3,0)) goto err;
if (heap_delete(file,record3)) goto err;
key_check-=atoi(record3);
key1[atoi(record+keyinfo[0].seg[0].start)]--;
@@ -513,7 +513,7 @@ int main(int argc, char *argv[])
}
ant=0;
- for (error=heap_rlast(file,record) ;
+ for (error=heap_rlast(file,record,0) ;
! error ;
error=heap_rprev(file,record))
{