mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +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''
		
			
				
	
	
		
			16 lines
		
	
	
		
			467 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			467 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| CREATE TABLE t1(a int) ENGINE=EXAMPLE;
 | |
| Warnings:
 | |
| Error	1286	Unknown table engine 'EXAMPLE'
 | |
| DROP TABLE t1;
 | |
| INSTALL PLUGIN example SONAME 'ha_example.so';
 | |
| INSTALL PLUGIN EXAMPLE SONAME 'ha_example.so';
 | |
| ERROR HY000: Function 'EXAMPLE' already exists
 | |
| UNINSTALL PLUGIN example;
 | |
| INSTALL PLUGIN example SONAME 'ha_example.so';
 | |
| CREATE TABLE t1(a int) ENGINE=EXAMPLE;
 | |
| SELECT * FROM t1;
 | |
| a
 | |
| DROP TABLE t1;
 | |
| UNINSTALL PLUGIN non_exist;
 | |
| ERROR 42000: PLUGIN non_exist does not exist
 |