File: have_32bit.inc

package info (click to toggle)
mysql-5.5 5.5.47-0%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 201,964 kB
  • sloc: cpp: 646,401; ansic: 551,652; perl: 53,254; pascal: 25,099; yacc: 13,069; sh: 10,332; cs: 4,647; xml: 4,178; sql: 3,346; makefile: 1,362; lex: 639; awk: 54
file content (16 lines) | stat: -rw-r--r-- 428 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Created by Horst Hunger     2008-04-15
# see also have_64bit.inc

--disable_query_log
--disable_warnings
let $save = `SELECT @@global.myisam_sort_buffer_size`;
SET @@global.myisam_sort_buffer_size = 4294967296;
let $mach32 = `SELECT @@global.myisam_sort_buffer_size <= 4294967295`;
eval SET @@global.myisam_sort_buffer_size = $save;
--enable_warnings
--enable_query_log
if (!$mach32)
{
  skip Need a 32 bit machine/binary;
}