mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			178 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			178 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
--disable_warnings
 | 
						|
DROP TABLE IF EXISTS t1;
 | 
						|
--enable_warnings
 | 
						|
 | 
						|
# XML output
 | 
						|
 | 
						|
CREATE TABLE t1(a int);
 | 
						|
INSERT INTO t1 VALUES (1), (2);
 | 
						|
--exec $MYSQL_DUMP -X test t1
 | 
						|
DROP TABLE t1;
 |