mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	This patch implements I_S.PLUGINS.LOAD_OPTION column as specified by WL#5496. mysql-test/r/plugin_load_option.result: A test case for WL#5496. mysql-test/suite/funcs_1/r/is_columns_is.result: Adjusted a test case according to WL#5496. mysql-test/t/plugin_load_option.test: A test case for WL#5496. sql/sql_show.cc: Added LOAD_OPTION column to I_S.PLUGINS.
		
			
				
	
	
		
			9 lines
		
	
	
		
			265 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			265 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
--source include/not_windows_embedded.inc
 | 
						|
--source include/have_example_plugin.inc
 | 
						|
 | 
						|
--error ER_PLUGIN_IS_PERMANENT
 | 
						|
UNINSTALL PLUGIN example;
 | 
						|
 | 
						|
SELECT PLUGIN_NAME, PLUGIN_STATUS, LOAD_OPTION FROM INFORMATION_SCHEMA.PLUGINS
 | 
						|
WHERE PLUGIN_NAME IN ('MyISAM', 'EXAMPLE');
 |