mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	Bug#37531, Bug#36941, Bug#36941, Bug#36942, Bug#38185. Also include test case from Bug 34300 which was left out from earlier snapshot (5.1-ss2387). Also include fix for Bug #29507, "TRUNCATE shows to many rows effected", since the fix for Bug 37531 depends on it.
		
			
				
	
	
		
			31 lines
		
	
	
		
			569 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			569 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#
 | 
						|
# Bug#34300 Tinyblob & tinytext fields currupted after export/import and alter in 5.1
 | 
						|
# http://bugs.mysql.com/34300
 | 
						|
#
 | 
						|
 | 
						|
-- source include/have_innodb.inc
 | 
						|
 | 
						|
-- disable_query_log
 | 
						|
-- disable_result_log
 | 
						|
 | 
						|
SET @@max_allowed_packet=16777216;
 | 
						|
 | 
						|
DROP TABLE IF EXISTS bug34300;
 | 
						|
CREATE TABLE bug34300 (
 | 
						|
  f4 TINYTEXT,
 | 
						|
  f6 MEDIUMTEXT,
 | 
						|
  f8 TINYBLOB
 | 
						|
) ENGINE=InnoDB;
 | 
						|
 | 
						|
INSERT INTO bug34300 VALUES ('xxx', repeat('a', 8459264), 'zzz');
 | 
						|
 | 
						|
-- enable_result_log
 | 
						|
 | 
						|
SELECT f4, f8 FROM bug34300;
 | 
						|
 | 
						|
ALTER TABLE bug34300 ADD COLUMN (f10 INT);
 | 
						|
 | 
						|
SELECT f4, f8 FROM bug34300;
 | 
						|
 | 
						|
DROP TABLE bug34300;
 |