mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 02:16:32 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			151 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			151 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| CREATE TABLE t(i int);
 | |
| INSERT INTO t VALUES(1);
 | |
| # shutdown server
 | |
| # remove datadir
 | |
| # xtrabackup move back
 | |
| # restart
 | |
| SELECT * from t;
 | |
| i
 | |
| 1
 | |
| DROP TABLE t;
 | 
