mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
14 lines
251 B
PHP
14 lines
251 B
PHP
#
|
|
# Check if server has support for loading udf's
|
|
# i.e it will support dlopen
|
|
#
|
|
--require r/have_udf.require
|
|
disable_query_log;
|
|
show variables like "have_dlopen";
|
|
enable_query_log;
|
|
|
|
#
|
|
# Check that the "udf_example.so" file has been created
|
|
#
|
|
|
|
# TODO
|