mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 19:06:14 +01:00 
			
		
		
		
	 83e529eced
			
		
	
	
	83e529eced
	
	
	
		
			
			Many of the changes was needed to be able to collect and print engine name and table version id's in the ddl log.
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			344 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			344 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| connect  con1,localhost,root,,;
 | |
| BACKUP STAGE START;
 | |
| connection default;
 | |
| # Test partition engine read from .frm
 | |
| CREATE TABLE t220 (a INT) ENGINE ROCKSDB PARTITION BY KEY(a) PARTITIONS 2;
 | |
| DROP TABLE t220;
 | |
| #
 | |
| # Reading backup ddl log file
 | |
| #
 | |
| CREATE,ROCKSDB,1,test,t220,id: 1,,0,,,
 | |
| DROP,ROCKSDB,1,test,t220,id: 1,,0,,,
 | |
| #
 | |
| # Cleanup
 | |
| #
 | |
| disconnect con1;
 |