mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
14 lines
259 B
PHP
14 lines
259 B
PHP
#
|
|
# Check if server has support for loading plugins
|
|
#
|
|
if (`SELECT @@have_dynamic_loading != 'YES'`) {
|
|
--skip Example plugin requires dynamic loading
|
|
}
|
|
|
|
#
|
|
# Check if the variable EXAMPLE_PLUGIN is set
|
|
#
|
|
if (!$HA_EXAMPLE_SO) {
|
|
--skip Need example plugin
|
|
}
|
|
|