diff options
author | unknown <serg@serg.mylan> | 2005-04-11 20:04:50 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2005-04-11 20:04:50 +0200 |
commit | 65255d3540bced78c11c5537d5ce10935a384774 (patch) | |
tree | 8113a5d6cc81ce585e0a1c3c5838c7d39445445f /myisam/myisamdef.h | |
parent | 93b4fbea9247aad1ad469a252ef1b67fc8e87bdf (diff) | |
download | mariadb-git-65255d3540bced78c11c5537d5ce10935a384774.tar.gz |
don't check record's checksum in REPAIR
myisam/mi_dynrec.c:
new parameter for _mi_rec_check().
myisam/myisamdef.h:
new parameter for _mi_rec_check().
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 916932c9eb3..a41bcf5449b 100644 --- a/myisam/myisamdef.h +++ b/myisam/myisamdef.h @@ -582,7 +582,7 @@ extern byte *mi_alloc_rec_buff(MI_INFO *,ulong, byte**); 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 *record, byte *packpos, - ulong reclength); + ulong packed_length, my_bool with_checkum); 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); |