mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
db7acaa475
fix misleading test name
14 lines
338 B
PHP
14 lines
338 B
PHP
# Created by Horst Hunger 2008-04-15
|
|
# see also have_32bit_ulong.inc
|
|
|
|
--disable_query_log
|
|
let $save = `SELECT @@pseudo_thread_id`;
|
|
SET @@pseudo_thread_id = 4294967296;
|
|
let $mach64 = `SELECT @@pseudo_thread_id > 4294967295`;
|
|
eval SET @@pseudo_thread_id = $save;
|
|
--enable_query_log
|
|
if (!$mach64)
|
|
{
|
|
skip Need a 64 unsigned long ;
|
|
}
|
|
|