mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	The plugin feature is disabled, you need HAVE_DLOPEN Selectively skip tests that require dynamic loading (ie: static builds).
		
			
				
	
	
		
			14 lines
		
	
	
		
			319 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			319 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 EXAMPLE_PLUGIN is set
 | 
						|
#
 | 
						|
--require r/have_example_plugin.require
 | 
						|
disable_query_log;
 | 
						|
eval select LENGTH('$EXAMPLE_PLUGIN') > 0 as 'have_example_plugin';
 | 
						|
enable_query_log;
 |