blob: d62093d8be4449962cca0ced122ff460878b1f26 (
plain)
1
2
3
4
5
6
7
8
9
|
disable_query_log;
disable_warnings;
let $VERSION_COMPILE_64BIT=
`SELECT IF(@@version_compile_machine like '%64%', 1, 0)`;
enable_warnings;
enable_query_log;
if ($VERSION_COMPILE_64BIT) {
skip Need a 32 bit machine/binary;
}
|