Concern #2 is this code in mi_check.c:
old_file=info->dfile;
|
info->dfile=info->rec_cache.file;
|
Does the code that follows this assume that info->dfile is seeked to some particular offset?
if (sort_info->current_key)
|
{
|
key=info->lastkey+info->s->base.max_key_length;
|
if ((error=(*info->s->read_rnd)(info,sort_param->record,info->lastpos,0)) &&
|
error != HA_ERR_RECORD_DELETED)
|
{
|
mi_check_print_error(param,"Can't read record to be removed");
|
info->dfile=old_file;
|
DBUG_RETURN(1);
|
}
|
|
for (i=0 ; i < sort_info->current_key ; i++)
|
{
|
uint key_length=_mi_make_key(info,i,key,sort_param->record,info->lastpos);
|
if (_mi_ck_delete(info,i,key,key_length))
|
{
|
mi_check_print_error(param,"Can't delete key %d from record to be removed",i+1);
|
info->dfile=old_file;
|
DBUG_RETURN(1);
|
}
|
}
|
if (sort_param->calc_checksum)
|
param->glob_crc-=(*info->s->calc_checksum)(info, sort_param->record);
|
}
|
error=flush_io_cache(&info->rec_cache) || (*info->s->delete_record)(info);
|
info->dfile=old_file; /* restore actual value */
|
.. and I have the same question about sort_delete_record() in storage/maria/ma_check.c.
It also has
row_info->dfile.file= row_info->rec_cache.file;
|
if (flush_io_cache(&row_info->rec_cache))
|
DBUG_RETURN(1);
|
...
|
Before the patch, row_info->rec_cache.file was "seeked" to somewhere, now it is not.
Any thoughts? If it is not immediately clear, let's ask Monty (this is very old code so I dont think anybody else rememers).
Concern #2 is this code in mi_check.c:
old_file=info->dfile;
info->dfile=info->rec_cache.file;
Does the code that follows this assume that info->dfile is seeked to some particular offset?
{
key=info->lastkey+info->s->base.max_key_length;
error != HA_ERR_RECORD_DELETED)
{
info->dfile=old_file;
DBUG_RETURN(1);
}
{
uint key_length=_mi_make_key(info,i,key,sort_param->record,info->lastpos);
{
info->dfile=old_file;
DBUG_RETURN(1);
}
}
param->glob_crc-=(*info->s->calc_checksum)(info, sort_param->record);
}
error=flush_io_cache(&info->rec_cache) || (*info->s->delete_record)(info);
.. and I have the same question about sort_delete_record() in storage/maria/ma_check.c.
It also has
row_info->dfile.file= row_info->rec_cache.file;
DBUG_RETURN(1);
...
Before the patch, row_info->rec_cache.file was "seeked" to somewhere, now it is not.
Any thoughts? If it is not immediately clear, let's ask Monty (this is very old code so I dont think anybody else rememers).