blob: 5a4dc93ec816dc940e26368e84f5313b9d76322d (
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('$SIMPLE_PARSER') > 0 as 'have_simple_parser';
enable_query_log;
|