/usr/lib/mysql-testsuite/include/load_sysvars.inc is in mysql-testsuite-5.6 5.6.16-1~exp1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #
# This script is included by tests of system variables to include system
# dependant values for the variables: default, minimum and maximum values
#
if (`SELECT convert(@@version_compile_os using latin1)
IN ('Win32','Win64','Windows')`)
{
--source include/windows_sys_vars.inc
}
if (!`SELECT convert(@@version_compile_os using latin1)
IN ('Win32','Win64','Windows')`)
{
--source include/linux_sys_vars.inc
}
|