mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	modified: mysql-test/suite/plugins/r/fulltext_plugin.result mysql-test/suite/plugins/t/fulltext_plugin.test plugin/fulltext/plugin_example.c sql/sql_show.cc pending merges: Sergei Golubchik 2013-07-06 Bug #69682 - mysqld crashes after uninstall ... Sergei Golubchik 2013-05-24 MDEV-4575 MySQL client doesn't strip off...
		
			
				
	
	
		
			18 lines
		
	
	
		
			486 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			486 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
--source include/have_simple_parser.inc
 | 
						|
 | 
						|
#
 | 
						|
# BUG#39746 - Debug flag breaks struct definition (server crash)
 | 
						|
#
 | 
						|
--replace_result .dll .so
 | 
						|
eval INSTALL PLUGIN simple_parser SONAME '$MYPLUGLIB_SO';
 | 
						|
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;
 | 
						|
 | 
						|
#
 | 
						|
# Bug #69682 - mysqld crashes after uninstall of plugin with "first" status var
 | 
						|
#
 | 
						|
show status like 'a%status';
 | 
						|
 |