26
26
expected to hit the cache again.
28
28
Allows "partial read" errors in the record header (when READING_HEADER flag
31
31
Note: out-of-cache reads are enabled for shared IO_CACHE's too,
32
32
as these reads will be cached by OS cache (and my_pread is always atomic)
44
int _mi_read_cache(internal::IO_CACHE *info, unsigned char *buff, internal::my_off_t pos, uint32_t length,
38
int _mi_read_cache(IO_CACHE *info, uchar *buff, my_off_t pos, uint length,
51
45
if (pos < info->pos_in_file)
55
49
read_length=(uint) (info->pos_in_file-pos);
57
51
if (my_pread(info->file,buff,read_length,pos,MYF(MY_NABP)))