mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	Created a test suite 'innodb' under mysql-test/suite/innodb for the innodb plugin tests. test suite 'innodb' has tests only which are not under any other mysql-test suites. Total 14 testcases are added to the test suite. Note: the patches in storage/innodb_plugin/mysql-test/patches are not applied yet
		
			
				
	
	
		
			8 lines
		
	
	
		
			313 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			313 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| CREATE TABLE bug44032(c CHAR(3) CHARACTER SET UTF8) ROW_FORMAT=REDUNDANT
 | |
| ENGINE=InnoDB;
 | |
| INSERT INTO bug44032 VALUES('abc'),(0xEFBCA4EFBCA4EFBCA4);
 | |
| UPDATE bug44032 SET c='DDD' WHERE c=0xEFBCA4EFBCA4EFBCA4;
 | |
| UPDATE bug44032 SET c=NULL WHERE c='DDD';
 | |
| UPDATE bug44032 SET c='DDD' WHERE c IS NULL;
 | |
| DROP TABLE bug44032;
 |