mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
e96885de92
* fully support --mysqld=--plugin-load=xxxx * uniformly support all loadable plugins, no need to hard-code every new plugin in mtr * autodetect MTR_VS_CONFIG on windows
13 lines
314 B
C++
13 lines
314 B
C++
#
|
|
# Check if server has support for loading udf's
|
|
# i.e it will support dlopen
|
|
#
|
|
--source include/have_dynamic_loading.inc
|
|
|
|
#
|
|
# Check if the variable SIMPLE_PARSER is set
|
|
#
|
|
--require r/have_simple_parser.require
|
|
disable_query_log;
|
|
eval select LENGTH('$MYPLUGLIB_SO') > 0 as 'have_simple_parser';
|
|
enable_query_log;
|