mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			289 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			289 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
install plugin example soname 'ha_example.so';
 | 
						|
create table t1(a int) engine=example;
 | 
						|
drop table t1;
 | 
						|
alter table mysql.plugin engine=innodb;
 | 
						|
restart
 | 
						|
create table t1(a int) engine=example;
 | 
						|
select * from t1;
 | 
						|
a
 | 
						|
drop table t1;
 | 
						|
alter table mysql.plugin engine=myisam;
 | 
						|
uninstall plugin example;
 |