mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 20:36:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			587 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			587 B
		
	
	
	
		
			Text
		
	
	
	
	
	
call mtr.add_suppression("Creating system tablespace with existing redo log file is not recommended.");
 | 
						|
call mtr.add_suppression("InnoDB: Database creation was aborted");
 | 
						|
call mtr.add_suppression("Plugin 'InnoDB' init function returned error.");
 | 
						|
call mtr.add_suppression("Plugin 'InnoDB' registration as a STORAGE ENGINE failed.");
 | 
						|
call mtr.add_suppression("Fewer engines are enabled now than were before the crash");
 | 
						|
CREATE TABLE t(a INT) ENGINE=InnoDB;
 | 
						|
# Kill the server
 | 
						|
# restart
 | 
						|
SELECT * FROM t;
 | 
						|
ERROR 42000: Unknown storage engine 'InnoDB'
 | 
						|
# Kill the server
 | 
						|
# restart
 | 
						|
DROP TABLE t;
 |