diff options
author | Ashish Agarwal <ashish.y.agarwal@oracle.com> | 2012-02-02 18:17:14 +0530 |
---|---|---|
committer | Ashish Agarwal <ashish.y.agarwal@oracle.com> | 2012-02-02 18:17:14 +0530 |
commit | f0955f9ec752d5631cb19b4cd5f045c7139fa68a (patch) | |
tree | a29c9283777c8468224c2b2421b36ca364c92f62 /storage/myisam/ha_myisam.h | |
parent | e6ce99e692fa4b70b4b8ba164167d740bba5b4e1 (diff) | |
download | mariadb-git-f0955f9ec752d5631cb19b4cd5f045c7139fa68a.tar.gz |
BUG#11754145 - 45702: IMPOSSIBE TO SPECIFY MYISAM_SORT_BUFFER > 4GB
ON 64 BIT MACHINES
PROBLEM: When sorting index during repair of
myisam tables, due to improper casting
of buffer size variables value of myisam_
sort_buffer_size is not set greater than
4GB.
SOLUTION: Proper casting of buffer size variable.
myisam_buffer_size changed to unsigned
long long to handle size > 4GB on
linux as well as windows.
Diffstat (limited to 'storage/myisam/ha_myisam.h')
-rw-r--r-- | storage/myisam/ha_myisam.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/storage/myisam/ha_myisam.h b/storage/myisam/ha_myisam.h index 7e96b54c57f..94ee8d3b5f3 100644 --- a/storage/myisam/ha_myisam.h +++ b/storage/myisam/ha_myisam.h @@ -35,7 +35,6 @@ typedef struct st_ha_create_information HA_CREATE_INFO; #define HA_RECOVER_QUICK 8 /* Don't check rows in data file */ #define HA_RECOVER_OFF 16 /* No automatic recover */ -extern ulong myisam_sort_buffer_size; extern TYPELIB myisam_recover_typelib; extern const char *myisam_recover_names[]; extern ulonglong myisam_recover_options; |