mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
10 lines
229 B
PHP
10 lines
229 B
PHP
|
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;
|
||
|
}
|