mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 10:56:12 +01:00 
			
		
		
		
	 f8c3d4c2d5
			
		
	
	
	f8c3d4c2d5
	
	
	
		
			
			Make absolute destination path from relative one, basing on mysql data directory. Reviewed by Alexander Barkov.
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			342 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			342 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| CREATE TABLE t(i INT) ENGINE INNODB;
 | |
| INSERT INTO t VALUES(1);
 | |
| # xtrabackup backup
 | |
| # xtrabackup prepare
 | |
| # shutdown server
 | |
| # remove datadir
 | |
| # xtrabackup move back
 | |
| # restart
 | |
| # shutdown server
 | |
| # remove datadir
 | |
| # xtrabackup move back
 | |
| # restart
 | |
| # shutdown server
 | |
| # remove datadir
 | |
| # xtrabackup move back
 | |
| # restart
 | |
| SELECT * FROM t;
 | |
| i
 | |
| 1
 | |
| DROP TABLE t;
 |