mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	they are ignored to a new test suite "innodb_plugin". Remove a hack in mtr that was deployed to run the builtin InnoDB tests against the InnoDB Plugin. Also detect if a test is an 'innodb plugin test' and if so then transparently replace the builtin InnoDB with the InnoDB Plugin.
		
			
				
	
	
		
			20 lines
		
	
	
		
			963 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			963 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
create table bug46000(`id` int,key `GEN_CLUST_INDEX`(`id`))engine=innodb;
 | 
						|
ERROR 42000: Incorrect index name 'GEN_CLUST_INDEX'
 | 
						|
create table bug46000(`id` int, key `GEN_clust_INDEX`(`id`))engine=innodb;
 | 
						|
ERROR 42000: Incorrect index name 'GEN_CLUST_INDEX'
 | 
						|
show warnings;
 | 
						|
Level	Code	Message
 | 
						|
Warning	1280	Cannot Create Index with name 'GEN_CLUST_INDEX'. The name is reserved for the system default primary index.
 | 
						|
Error	1280	Incorrect index name 'GEN_CLUST_INDEX'
 | 
						|
Error	1005	Can't create table 'test.bug46000' (errno: -1)
 | 
						|
create table bug46000(id int) engine=innodb;
 | 
						|
create index GEN_CLUST_INDEX on bug46000(id);
 | 
						|
ERROR 42000: Incorrect index name 'GEN_CLUST_INDEX'
 | 
						|
show warnings;
 | 
						|
Level	Code	Message
 | 
						|
Warning	1280	Cannot Create Index with name 'GEN_CLUST_INDEX'. The name is reserved for the system default primary index.
 | 
						|
Error	1280	Incorrect index name 'GEN_CLUST_INDEX'
 | 
						|
Error	1030	Got error -1 from storage engine
 | 
						|
create index idx on bug46000(id);
 | 
						|
drop table bug46000;
 |