mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	Put descriptions of plugins into a separate file read by MTR MTR itself has generalised code to read this and set env. variables Removed the *SO variables, updated some tests accordingly New commit: added optional list of plugin names for _LOAD variable Also made changes for the new AUTH_* plugins
		
			
				
	
	
		
			12 lines
		
	
	
		
			374 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			374 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| --source include/have_simple_parser.inc
 | |
| 
 | |
| #
 | |
| # BUG#39746 - Debug flag breaks struct definition (server crash)
 | |
| #
 | |
| --replace_regex /\.dll/.so/
 | |
| eval INSTALL PLUGIN simple_parser SONAME '$SIMPLE_PARSER';
 | |
| CREATE TABLE t1(a TEXT, b TEXT, FULLTEXT(a) WITH PARSER simple_parser);
 | |
| ALTER TABLE t1 ADD FULLTEXT(b) WITH PARSER simple_parser;
 | |
| DROP TABLE t1;
 | |
| UNINSTALL PLUGIN simple_parser;
 |