diff options
author | unknown <sergefp@mysql.com> | 2004-09-22 16:29:15 +0400 |
---|---|---|
committer | unknown <sergefp@mysql.com> | 2004-09-22 16:29:15 +0400 |
commit | 4063fd2c726a71ed0c9fd7052650f6f0feaaaac7 (patch) | |
tree | e64aeb7d8d84ed6afb7086e9cc18ee52ee1a75fe /include/myisam.h | |
parent | 8bf8c8596873b534ad4a13eb73152c617c50c21b (diff) | |
download | mariadb-git-4063fd2c726a71ed0c9fd7052650f6f0feaaaac7.tar.gz |
Fix for BUG#4785:
* myisampack leaves key_file_length value from original table
* myisamchk uses this value when calculating key file pointer length
Diffstat (limited to 'include/myisam.h')
-rw-r--r-- | include/myisam.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/myisam.h b/include/myisam.h index 87a40b50c73..cad48e2d331 100644 --- a/include/myisam.h +++ b/include/myisam.h @@ -96,6 +96,7 @@ typedef struct st_mi_create_info ha_rows reloc_rows; ulonglong auto_increment; ulonglong data_file_length; + ulonglong key_file_length; uint raid_type,raid_chunks; ulong raid_chunksize; uint old_options; |