blob: 44187c4331b5f5b35db258f5b5c419b5cd03693d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# 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;
|