mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
Index number argument
Fix in test results
This commit is contained in:
@@ -18,10 +18,10 @@
|
||||
|
||||
/* Read first record with the current key */
|
||||
|
||||
int heap_rfirst(HP_INFO *info, byte *record)
|
||||
int heap_rfirst(HP_INFO *info, byte *record, int inx)
|
||||
{
|
||||
HP_SHARE *share = info->s;
|
||||
HP_KEYDEF *keyinfo = share->keydef + info->lastinx;
|
||||
HP_KEYDEF *keyinfo = share->keydef + inx;
|
||||
|
||||
DBUG_ENTER("heap_rfirst");
|
||||
if (keyinfo->algorithm == HA_KEY_ALG_BTREE)
|
||||
|
@@ -19,15 +19,12 @@
|
||||
/* Read first record with the current key */
|
||||
|
||||
|
||||
int heap_rlast(HP_INFO *info, byte *record)
|
||||
int heap_rlast(HP_INFO *info, byte *record, int inx)
|
||||
{
|
||||
HP_SHARE *share = info->s;
|
||||
HP_KEYDEF *keyinfo;
|
||||
HP_SHARE *share= info->s;
|
||||
HP_KEYDEF *keyinfo= share->keydef + inx;
|
||||
|
||||
DBUG_ENTER("heap_rlast");
|
||||
if (info->lastinx < 0)
|
||||
DBUG_RETURN(my_errno = HA_ERR_WRONG_INDEX);
|
||||
keyinfo = share->keydef + info->lastinx;
|
||||
if (keyinfo->algorithm == HA_KEY_ALG_BTREE)
|
||||
{
|
||||
byte *pos;
|
||||
|
@@ -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))
|
||||
{
|
||||
|
Reference in New Issue
Block a user