diff options
author | serg@sergbook.mysql.com <> | 2002-07-14 21:47:46 +0200 |
---|---|---|
committer | serg@sergbook.mysql.com <> | 2002-07-14 21:47:46 +0200 |
commit | 2fe3fec4e49c2b2c123b5215c96b5a5fb468ca7f (patch) | |
tree | b53b24f6e33023d7d8ec76bbad1101b24ec1c504 /myisam/myisamdef.h | |
parent | 3f6491e3eb2ef6708dc94495c72d5c11d4428c4f (diff) | |
download | mariadb-git-2fe3fec4e49c2b2c123b5215c96b5a5fb468ca7f.tar.gz |
parallel repair needs rec_buff local for thread !!!
Diffstat (limited to 'myisam/myisamdef.h')
-rw-r--r-- | myisam/myisamdef.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/myisamdef.h b/myisam/myisamdef.h index 72bffab78c2..5790ae6f475 100644 --- a/myisam/myisamdef.h +++ b/myisam/myisamdef.h @@ -530,7 +530,7 @@ extern gptr mi_get_rec_buff_ptr(MI_INFO *, byte *); &((INFO)->rec_buff), &((INFO)->alloced_rec_buff_length)) extern ulong _mi_rec_unpack(MI_INFO *info,byte *to,byte *from, ulong reclength); -extern my_bool _mi_rec_check(MI_INFO *info,const char *from); +extern my_bool _mi_rec_check(MI_INFO *info,const char *record, byte *packpos); extern int _mi_write_part_record(MI_INFO *info,my_off_t filepos,ulong length, my_off_t next_filepos,byte **record, ulong *reclength,int *flag); |