mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-04 12:56:14 +01:00 
			
		
		
		
	In any test that uses wait_all_purged.inc, ensure that InnoDB tables
will be created without persistent statistics.
This is a follow-up to commit cd04673a17
after a similar failure was observed in the innodb_zip.blob test.
		
	
			
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			333 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			333 B
		
	
	
	
		
			Text
		
	
	
	
	
	
CREATE TABLE t1 (g MULTIPOINT NOT NULL) ENGINE=InnoDB STATS_PERSISTENT=0;
 | 
						|
INSERT INTO t1 VALUES ('');
 | 
						|
connect purge_control,localhost,root;
 | 
						|
START TRANSACTION WITH CONSISTENT SNAPSHOT;
 | 
						|
connection default;
 | 
						|
DELETE FROM t1;
 | 
						|
ALTER TABLE t1 ADD SPATIAL INDEX (g);
 | 
						|
disconnect purge_control;
 | 
						|
InnoDB		0 transactions not purged
 | 
						|
DROP TABLE t1;
 |