mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 10:56:12 +01:00 
			
		
		
		
	 0304dbc327
			
		
	
	
	0304dbc327
	
	
	
		
			
			Additional corrections after merge from 10.4 branch Signed-off-by: Julius Goryavsky <julius.goryavsky@mariadb.com>
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			465 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			465 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| --source include/galera_cluster.inc
 | |
| --source include/force_restart.inc # ARCHIVE plugin must be uninstalled
 | |
| 
 | |
| if (!$HA_ARCHIVE_SO) {
 | |
|   skip Needs Archive loadable plugin;
 | |
| }
 | |
| 
 | |
| INSTALL PLUGIN ARCHIVE SONAME 'ha_archive.so';
 | |
| CREATE TABLE t (a CHAR(1)) ENGINE=ARCHIVE;
 | |
| SHOW CREATE TABLE t;
 | |
| INSERT INTO t VALUES ('A');
 | |
| UNINSTALL SONAME 'ha_archive';
 | |
| ALTER TABLE t CHANGE COLUMN a a CHAR(2);
 | |
| --error ER_UNKNOWN_STORAGE_ENGINE
 | |
| INSERT INTO t (a) VALUES ('AB');
 | |
| DROP TABLE t;
 |