mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	mysql-test/r/have_dynamic_loading.require: Rename: mysql-test/r/have_udf.require -> mysql-test/r/have_dynamic_loading.require mysql-test/include/have_udf.inc: Rename have_udf.require to hqave_dynamic_loading.require mysql-test/mysql-test-run.pl: Add support for ha_example plugin mysql-test/include/have_example_plugin.inc: New BitKeeper file ``mysql-test/include/have_example_plugin.inc'' mysql-test/r/have_example_plugin.require: New BitKeeper file ``mysql-test/r/have_example_plugin.require'' mysql-test/r/plugin.result: New BitKeeper file ``mysql-test/r/plugin.result'' mysql-test/t/plugin.test: New BitKeeper file ``mysql-test/t/plugin.test''
		
			
				
	
	
		
			27 lines
		
	
	
		
			538 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			538 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
--source include/have_example_plugin.inc
 | 
						|
 | 
						|
CREATE TABLE t1(a int) ENGINE=EXAMPLE;
 | 
						|
DROP TABLE t1;
 | 
						|
 | 
						|
INSTALL PLUGIN example SONAME 'ha_example.so';
 | 
						|
--error 1125
 | 
						|
INSTALL PLUGIN EXAMPLE SONAME 'ha_example.so';
 | 
						|
 | 
						|
UNINSTALL PLUGIN example;
 | 
						|
 | 
						|
INSTALL PLUGIN example SONAME 'ha_example.so';
 | 
						|
 | 
						|
CREATE TABLE t1(a int) ENGINE=EXAMPLE;
 | 
						|
 | 
						|
# Let's do some advanced ops with the example engine :)
 | 
						|
SELECT * FROM t1;
 | 
						|
 | 
						|
DROP TABLE t1;
 | 
						|
 | 
						|
# Waiting for fix to BUG#22694
 | 
						|
#UNINSTALL PLUGIN example;
 | 
						|
#UNINSTALL PLUGIN EXAMPLE;
 | 
						|
 | 
						|
--error 1305
 | 
						|
UNINSTALL PLUGIN non_exist;
 |