mirror of
https://github.com/MariaDB/server.git
synced 2025-05-11 13:21:44 +03:00
- Cherrypick MBUG#688404 (PBXT crashes in debug/x64) - Fix unixism (rm -rf) in the test suite_timeout - Avoid plugin tests on Windows/embedded, plugins do not and will not work here
14 lines
358 B
C++
14 lines
358 B
C++
#
|
|
# Check if server has support for loading udf's
|
|
# i.e it will support dlopen
|
|
#
|
|
--source include/have_dynamic_loading.inc
|
|
--source include/not_windows_embedded.inc
|
|
#
|
|
# Check if the variable HA_EXAMPLE_SO is set
|
|
#
|
|
--require r/have_example_plugin.require
|
|
disable_query_log;
|
|
eval select LENGTH('$HA_EXAMPLE_SO') > 0 as 'have_example_plugin';
|
|
enable_query_log;
|