blob: 8a1679de63675a867050556ec073a0be3b614f1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#
# Check if server has support for loading plugins
#
if (`SELECT @@have_dynamic_loading != 'YES'`) {
--skip Requires dynamic loading
}
#
# Check if the variable SEMISYNC_MASTER_SO is set
#
if (!$SEMISYNC_MASTER_SO)
{
skip Need semisync plugins;
}
|