-
Pavan Naik authored
Issue : ======= 64-bit tests are getting skipped on 64-bit windows machine. The reason for this issue is have_64bit.inc uses sort_buffer_size system variable which is of type ULONG_MAX. On 64-bit machine, the limit is 2^64, however 64-bit windows still defines this as 32-bit, hence making the available value much smaller(limit is 2^32). Fix : ===== Modified have_62bit.inc to use 'myisam_sort_buffer_size' system variable which is of type ULONGULONG_MAX. Reviewed-by:
Anitha Gopi <anitha.gopi@oracle.com> Reviewed-by:
Horst Hunger <horst.hunger@oracle.com> RB: 11305
Pavan Naik authoredIssue : ======= 64-bit tests are getting skipped on 64-bit windows machine. The reason for this issue is have_64bit.inc uses sort_buffer_size system variable which is of type ULONG_MAX. On 64-bit machine, the limit is 2^64, however 64-bit windows still defines this as 32-bit, hence making the available value much smaller(limit is 2^32). Fix : ===== Modified have_62bit.inc to use 'myisam_sort_buffer_size' system variable which is of type ULONGULONG_MAX. Reviewed-by:
Anitha Gopi <anitha.gopi@oracle.com> Reviewed-by:
Horst Hunger <horst.hunger@oracle.com> RB: 11305
Loading